14 lines
284 B
CSS
14 lines
284 B
CSS
.home-container {
|
|
width: min(100%, 1100px);
|
|
margin: 32px auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
.home-container ::deep .menu-button {
|
|
width: 100%;
|
|
min-height: 220px;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
} |