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

33 lines
558 B
SCSS
Raw Normal View History

2020-06-02 19:11:01 -07:00
.timeline-queue-header {
display: block;
width: 100%;
max-height: 46px;
position: relative;
border-bottom: 1px solid;
border-top: 1px solid;
2020-06-06 20:55:00 -07:00
border-color: var(--brand-color--faint);
2020-06-02 19:11:01 -07:00
transition: max-height 150ms ease;
overflow: hidden;
opacity: 1;
&.hidden {
max-height: 0;
opacity: 0;
}
&__btn {
display: block;
width: 100%;
height: 100%;
text-align: center;
line-height: 46px;
font-size: 14px;
cursor: pointer;
color: var(--primary-text-color);
span {
height: 46px;
}
}
}