Files
carpseeds.pl/wp-content/plugins/jet-tricks/assets/scss/addons/_jet-unfold.scss
2024-07-15 11:28:08 +02:00

46 lines
645 B
SCSS

.jet-unfold {
transition: all 300ms ease;
&__mask {
overflow: hidden;
position: relative;
}
&__separator {
position: absolute;
display: block;
width: 100%;
height: 30px;
bottom: 0;
opacity: 1;
transition: opacity 100ms ease;
}
&__trigger {
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
margin-top: 30px;
}
&__button {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: center;
background-color: #6ec1e4;
cursor: pointer;
}
&__button-icon {
margin-right: 5px;
}
&-state {
.jet-unfold__separator {
opacity: 0;
}
}
}