22 lines
No EOL
328 B
SCSS
22 lines
No EOL
328 B
SCSS
.CharacterGrid {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#grid_characters {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 761px;
|
|
|
|
& > * {
|
|
margin-bottom: 24px;
|
|
margin-right: 24px;
|
|
}
|
|
|
|
& > li:last-child {
|
|
margin: 0;
|
|
}
|
|
} |