bigbuffet-rw/app/styles/components/timeline-queue-header.scss

48 lines
821 B
SCSS
Raw Normal View History

2020-06-02 19:11:01 -07:00
.timeline-queue-header {
display: flex;
align-items: center;
justify-content: space-evenly;
max-height: 30px;
position: sticky;
top: 60px;
margin: 8px auto;
background-color: var(--brand-color);
color: #fff;
2020-06-02 19:11:01 -07:00
border-bottom: 1px solid;
border-top: 1px solid;
2020-06-06 20:55:00 -07:00
border-color: var(--brand-color--faint);
border-radius: 100px;
2020-06-02 19:11:01 -07:00
transition: max-height 150ms ease;
overflow: hidden;
opacity: 1;
left: 0;
right: 0;
padding: 0 10px;
z-index: 999;
.svg-icon {
margin-right: 5px;
}
2020-06-02 19:11:01 -07:00
&.hidden {
max-height: 0;
opacity: 0;
margin: 0;
2020-06-02 19:11:01 -07:00
}
&__btn {
display: flex;
2020-06-02 19:11:01 -07:00
line-height: 46px;
font-size: 14px;
cursor: pointer;
color: #fff;
white-space: nowrap;
align-items: center;
justify-content: center;
2020-06-02 19:11:01 -07:00
span {
height: 46px;
}
}
}