add line divider block
All checks were successful
Deploy / Deploy to Production (push) Successful in 8s

This commit is contained in:
isUnknown 2026-03-23 21:06:18 +01:00
parent e425d6d141
commit bfec3daef1
4 changed files with 37 additions and 5 deletions

View file

@ -15,9 +15,24 @@ main {
} */
hr {
height: 1px;
border: none;
background-color: var(--color-primary);
}
hr::before,
hr::after {
display: flex;
justify-content: center;
color: #fff;
font-size: var(--font-size-m);
font-weight: var(--font-weight-light);
line-height: 0.8;
}
hr::before {
content: "+";
}
hr::after {
content: "+ +";
}
nav hr {

View file

@ -48,9 +48,25 @@ main {
margin-top: calc(var(--unit--vertical) * 2);
} */
hr {
height: 1px;
border: none;
background-color: var(--color-primary);
}
hr::before,
hr::after {
display: flex;
justify-content: center;
color: #fff;
font-size: var(--font-size-m);
font-weight: var(--font-weight-light);
line-height: 0.8;
}
hr::before {
content: "+";
}
hr::after {
content: "+ +";
}
nav hr {

File diff suppressed because one or more lines are too long