feat: Add login to layouts

- Add articles
- Change order of articles
- Add id attributes like in components
- Add login example
This commit is contained in:
sthag 2026-03-12 21:38:48 +01:00
parent a5bf80cb91
commit 6520cdbcf0
3 changed files with 91 additions and 47 deletions

View file

@ -0,0 +1,28 @@
@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;
}
}
}