2016-03-02 02:31:56 +05:30
|
|
|
.horizontalGroup {
|
2019-11-27 14:33:32 +05:30
|
|
|
display: flex;
|
2016-03-02 02:31:56 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
2019-11-27 14:33:32 +05:30
|
|
|
// TODO: in some cases we do not need overflow hidden
|
|
|
|
// probably, it is better to create a separate class for children, that will
|
|
|
|
// enable overflow hidden and ellipsis
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2016-06-05 16:30:43 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
$borderConfig: 1px solid rgba(#fff, 0.15);
|
2016-03-02 02:31:56 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
border-left: $borderConfig;
|
2016-03-02 02:31:56 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
&:last-child {
|
|
|
|
border-right: $borderConfig;
|
|
|
|
}
|
2016-03-02 02:31:56 +05:30
|
|
|
}
|