You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soapbox/app/styles/components/timeline-queue-header.scss

33 lines
558 B

.timeline-queue-header {
display: block;
width: 100%;
max-height: 46px;
position: relative;
border-bottom: 1px solid;
border-top: 1px solid;
border-color: var(--brand-color--faint);
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;
}
}
}