mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-10 04:21:07 +00:00
18 lines
533 B
SCSS
18 lines
533 B
SCSS
undershoot {
|
|
background-origin: padding-box;
|
|
&.top, &.bottom {
|
|
background-image: linear-gradient(to right, currentColor 50%, transparent 50%);
|
|
background-size: 0.5em 1px;
|
|
background-repeat: repeat-x;
|
|
}
|
|
&.right, &.left {
|
|
background-image: linear-gradient(to bottom, currentColor 50%, transparent 50%);
|
|
background-size: 1px 0.5em;
|
|
background-repeat: repeat-y;
|
|
}
|
|
&.top {background-position: top;}
|
|
&.bottom {background-position: bottom;}
|
|
&.right {background-position: right;}
|
|
&.left {background-position: left;}
|
|
|
|
}
|