mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
27 lines
370 B
CSS
27 lines
370 B
CSS
|
|
|
|
.grid-buttons {
|
|
grid-template-columns: 1fr 1fr;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
gap: 20px;
|
|
max-width: 1300px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.grid-top {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.hide-on-mobile {
|
|
display: none;
|
|
}
|
|
} |