2020-06-03 02:11:01 +00:00
|
|
|
.timeline-queue-header {
|
2021-09-27 23:38:38 +00:00
|
|
|
display: flex;
|
2021-10-08 19:34:23 +00:00
|
|
|
align-self: center;
|
2021-09-27 23:38:38 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: space-evenly;
|
2021-10-08 19:34:23 +00:00
|
|
|
height: 30px;
|
|
|
|
position: fixed;
|
2021-09-27 23:38:38 +00:00
|
|
|
top: 60px;
|
2021-09-28 00:31:46 +00:00
|
|
|
margin: 0 auto;
|
2021-09-27 23:38:38 +00:00
|
|
|
background-color: var(--brand-color);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 100px;
|
2021-10-08 19:34:23 +00:00
|
|
|
transition: 150ms ease;
|
2020-06-03 02:11:01 +00:00
|
|
|
overflow: hidden;
|
2021-09-27 23:38:38 +00:00
|
|
|
padding: 0 10px;
|
2021-09-28 00:18:34 +00:00
|
|
|
z-index: 500;
|
2021-09-27 23:38:38 +00:00
|
|
|
|
2021-10-16 03:05:59 +00:00
|
|
|
.sub-navigation ~ & {
|
2021-10-08 19:34:23 +00:00
|
|
|
top: calc(60px + 41px);
|
|
|
|
}
|
|
|
|
|
2021-09-27 23:38:38 +00:00
|
|
|
.svg-icon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2020-06-03 02:11:01 +00:00
|
|
|
|
|
|
|
&.hidden {
|
2021-10-08 19:34:23 +00:00
|
|
|
transform: scaleY(0);
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
.timeline-queue-header__label {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2020-06-03 02:11:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__btn {
|
2021-09-27 23:38:38 +00:00
|
|
|
display: flex;
|
2020-06-03 02:11:01 +00:00
|
|
|
line-height: 46px;
|
|
|
|
font-size: 14px;
|
|
|
|
cursor: pointer;
|
2021-09-27 23:38:38 +00:00
|
|
|
color: #fff;
|
|
|
|
white-space: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-06-03 02:11:01 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
height: 46px;
|
|
|
|
}
|
|
|
|
}
|
2021-10-08 19:34:23 +00:00
|
|
|
|
|
|
|
&__label {
|
|
|
|
transition: 150ms ease;
|
|
|
|
}
|
2020-06-03 02:11:01 +00:00
|
|
|
}
|