This commit is contained in:
Jamie Kyle
2023-04-20 10:03:43 -07:00
committed by GitHub
parent 1f2cde6d04
commit 0e490542a7
196 changed files with 2117 additions and 1217 deletions

View File

@@ -18,7 +18,8 @@
height: 4px;
overflow: hidden;
width: 100%;
margin: 16px 0;
margin-block: 16px;
margin-inline: 0;
}
&--bar {
@@ -27,7 +28,14 @@
display: block;
height: 100%;
width: 100%;
transform: translateX(-100%);
&:dir(ltr) {
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(-100%);
}
&:dir(rtl) {
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
transform: translateX(100%);
}
transition: transform 500ms ease-out;
}
}