hippie/source/style/modules/ui/_form_module.scss
sthag 3b380e954a feat: Changes to style and logic for ui parts
- Update hippie styles
- Move top element for new page to header macro
- Reassign ui and example collections
2025-06-19 16:21:09 +02:00

33 lines
No EOL
447 B
SCSS

#head {
// display: flex;
button {
@extend .button_io;
}
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;
}