add line divider block
All checks were successful
Deploy / Deploy to Production (push) Successful in 8s
All checks were successful
Deploy / Deploy to Production (push) Successful in 8s
This commit is contained in:
parent
e425d6d141
commit
bfec3daef1
4 changed files with 37 additions and 5 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue