- Use common styles - Move NewDiv class to external script - Align script for form and drag pages
38 lines
No EOL
507 B
SCSS
38 lines
No EOL
507 B
SCSS
.body_form {
|
|
margin: 0;
|
|
background-color: $color-dark;
|
|
}
|
|
|
|
#head {
|
|
// display: flex;
|
|
|
|
button {
|
|
@extend .io_button;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
#grid {
|
|
display: grid;
|
|
gap: 8px;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-auto-rows: minmax(64px, auto);
|
|
margin-inline: $space_small;
|
|
}
|
|
|
|
#grid>div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: aquamarine;
|
|
}
|
|
|
|
#grid>div:first-child {
|
|
grid-column: 1 / 3;
|
|
background-color: violet;
|
|
} |