Spaces:
Running
Running
File size: 205 Bytes
82b391b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
.buttons {
display: flex;
align-items: center;
justify-content: left;
width: 100%;
}
@media screen and (max-width: 990px) {
.buttons {
align-items: flex-start;
flex-wrap: wrap;
gap: 15px;
}
}
|