plate-tool/assets/scss/default_theme/components/_plate_container.scss

23 lines
351 B
SCSS
Raw Normal View History

2023-06-02 20:26:20 +00:00
@use "sass:color";
@use "../variables" as *;
div.plate_container {
display: flex;
flex-direction: column;
justify-content: center;
2023-06-02 20:26:20 +00:00
align-items: center;
border: 2px solid $color-dark;
grid-column: right / right;
grid-row: upper / 3;
h2 {
margin-bottom: 1%;
text-align: center;
}
.plate_container--destination {
margin-top: 3%;
}
2023-06-02 20:26:20 +00:00
}