2020-08-11 15:58:10 +02:00
|
|
|
.tab-bar {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
&__tab {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-03-08 22:50:35 +01:00
|
|
|
color: var(--color-text-default);
|
2020-08-11 15:58:10 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
2022-03-08 22:50:35 +01:00
|
|
|
align-items: center;
|
2020-08-11 15:58:10 +02:00
|
|
|
min-width: 0;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
transition: opacity 200ms ease-in-out;
|
2020-11-05 19:05:41 +01:00
|
|
|
background-color: unset;
|
|
|
|
text-align: start;
|
2023-05-23 20:29:00 +02:00
|
|
|
position: relative;
|
2020-08-11 15:58:10 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H4;
|
|
|
|
|
2020-08-11 15:58:10 +02:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2023-05-23 20:29:00 +02:00
|
|
|
&__selected-indicator {
|
|
|
|
width: 4px;
|
|
|
|
height: calc(100% - 8px);
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
left: 4px;
|
|
|
|
}
|
|
|
|
|
2020-08-11 15:58:10 +02:00
|
|
|
&__content {
|
2022-02-08 17:30:20 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
2023-07-24 15:21:29 +02:00
|
|
|
width: 100%;
|
2020-08-11 15:58:10 +02:00
|
|
|
|
2022-02-09 18:49:41 +01:00
|
|
|
&__title {
|
|
|
|
@include H4;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-min {
|
2022-02-09 18:49:41 +01:00
|
|
|
@include H6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-11 15:58:10 +02:00
|
|
|
&__description {
|
|
|
|
display: none;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2020-08-11 15:58:10 +02:00
|
|
|
display: block;
|
|
|
|
font-weight: 300;
|
|
|
|
margin-top: 8px;
|
|
|
|
min-height: 14px;
|
|
|
|
}
|
|
|
|
}
|
2022-02-08 17:30:20 +01:00
|
|
|
|
|
|
|
&__icon {
|
|
|
|
display: flex;
|
2022-04-06 01:22:41 +02:00
|
|
|
justify-content: center;
|
|
|
|
margin-inline-end: 16px;
|
|
|
|
flex: 0 0 18px;
|
2022-02-08 17:30:20 +01:00
|
|
|
}
|
2020-08-11 15:58:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__caret {
|
|
|
|
display: none;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2020-08-11 15:58:10 +02:00
|
|
|
display: block;
|
2022-02-08 17:30:20 +01:00
|
|
|
margin-inline-start: auto;
|
2022-03-08 22:50:35 +01:00
|
|
|
margin-inline-end: 8px;
|
2020-08-11 15:58:10 +02:00
|
|
|
|
|
|
|
[dir='rtl'] & {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--active {
|
|
|
|
opacity: 1 !important;
|
2023-05-23 20:29:00 +02:00
|
|
|
|
|
|
|
@include screen-sm-min {
|
|
|
|
background-color: var(--color-primary-muted);
|
|
|
|
}
|
2020-08-11 15:58:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__grow-tab {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|