-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
This solves an issue related with template selector.
// _template-selector.scss
$template-selector-transition-duration: .4s;
$template-selector-transition-type: ease-in-out;
$template-selector-margin-bottom: 15px;
.template-selector__templates {
overflow: hidden;
}
.template-selector__template {
height: 0;
margin-bottom: 0;
opacity: 0;
overflow: hidden;
pointer-events: none;
transition: opacity $template-selector-transition-duration $template-selector-transition-type;
}
.template-selector__template--selected {
display: block;
height: 100%;
margin-bottom: $template-selector-margin-bottom;
opacity: 1;
pointer-events: auto;
}Metadata
Metadata
Assignees
Labels
No labels