mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-04 20:49:41 +05:30
17 lines
369 B
SCSS
17 lines
369 B
SCSS
.container {
|
|
white-space: nowrap;
|
|
transform: translate(var(--transition-progress));
|
|
|
|
html[dir='ltr'] & {
|
|
// noinspection CssInvalidFunction works fine in a browser (:
|
|
transform: translate(calc(var(--transition-progress) * -1));
|
|
}
|
|
}
|
|
|
|
.item {
|
|
display: inline-block;
|
|
white-space: normal;
|
|
vertical-align: top;
|
|
width: 100%;
|
|
}
|