39 lines
771 B
Plaintext
39 lines
771 B
Plaintext
:host {
|
|
--button-padding-mobile: 10px;
|
|
--button-font-size-mobile: 25px;
|
|
}
|
|
|
|
.song-row:not(:last-child) {
|
|
display: block;
|
|
border-bottom: 1px solid #0002;
|
|
}
|
|
|
|
.head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.cdk-drag-preview {
|
|
background-color: white;
|
|
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);
|
|
}
|
|
|
|
.cdk-drag-placeholder {
|
|
opacity: 0;
|
|
}
|
|
|
|
.cdk-drag-animating {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.song-list:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.example-list.cdk-drop-list-dragging .song-list:not(.cdk-drag-placeholder) {
|
|
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|