lbry-desktop/src/ui/scss/component/_expandable.scss
2019-07-02 00:04:13 -04:00

44 lines
826 B
SCSS

.expandable {
border-bottom: 1px solid $lbry-gray-1;
margin-bottom: var(--spacing-medium);
padding-bottom: var(--spacing-medium);
[data-mode='dark'] & {
border-color: #555254;
}
}
.expandable__button {
font-size: 1.25rem;
}
.expandable--closed,
.expandable--open {
margin-bottom: var(--spacing-small);
}
.expandable--closed {
max-height: 10rem;
overflow: hidden;
position: relative;
&::after {
width: 100%;
height: 40%;
bottom: 0;
left: 0;
pointer-events: none;
background-image: linear-gradient(to bottom, transparent 0%, mix($lbry-white, $lbry-gray-1, 70%) 90%);
content: '';
position: absolute;
[data-mode='dark'] & {
background-image: linear-gradient(to bottom, transparent 0%, #1e1e1e 90%);
}
}
}
.expandable--open {
max-height: 100%;
}