hippie/source/style/modules/_login.scss
sthag 6520cdbcf0 feat: Add login to layouts
- Add articles
- Change order of articles
- Add id attributes like in components
- Add login example
2026-03-12 21:38:48 +01:00

28 lines
No EOL
466 B
SCSS

@use "sass:color";
@use "../hippie-style/hippie";
form[name="login"] {
display: flex;
align-items: center;
justify-content: center;
& > div {
padding: hippie.$space_double;
background-color: color.adjust(hippie.basic_color(echo), $alpha: -0.4);
p {
margin-top: 0;
color: hippie.$color_brightest;
}
& > input {
display: block;
width: 100%;
margin-inline: 0;
}
input:first-of-type {
margin-bottom: hippie.$space_basic;
}
}
}