hensei-web/components/CharacterGrid/index.scss

28 lines
No EOL
462 B
SCSS

.CharacterGrid {
display: flex;
justify-content: center;
}
#grid_characters {
display: flex;
margin: 0;
padding: 0;
max-width: 761px;
@media (max-width: $medium-screen) {
justify-content: space-between;
width: 100%;
}
& > * {
margin-right: $unit * 3;
@media (max-width: $medium-screen) {
margin-right: inherit;
}
}
& > li:last-child {
margin: 0;
}
}