funky-framadate-front/src/app/features/administration/form/date-select/date-select.component.scss

36 lines
576 B
SCSS
Raw Normal View History

:host {
.btn i + span {
margin-left: 1ch;
}
.btn + .btn {
margin-left: 1em;
}
2021-02-09 11:27:01 +01:00
.is-boxed {
border: 1px solid #ddd;
padding: 1em;
margin: 1em 0;
}
2021-02-09 12:10:10 +01:00
.cdk-drag-preview {
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 2px rgba(0, 0, 0, 0.12);
border: 2px solid #ccc;
}
.cdk-drag-placeholder {
* {
opacity: 0;
}
background: #ccc;
}
.cdk-drag-animating {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.movable {
cursor: move;
}
}