mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-01-08 13:04:19 +05:30
18 lines
271 B
SCSS
18 lines
271 B
SCSS
.horizontalGroup {
|
|
display: flex;
|
|
}
|
|
|
|
.item {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
|
|
$borderConfig: 1px solid rgba(#fff, 0.15);
|
|
|
|
border-left: $borderConfig;
|
|
|
|
&:last-child {
|
|
border-right: $borderConfig;
|
|
}
|
|
}
|