71 lines
1.2 KiB
Plaintext
71 lines
1.2 KiB
Plaintext
:host {
|
|
--button-padding-mobile: 10px;
|
|
--button-font-size-mobile: 25px;
|
|
}
|
|
|
|
.song-row:not(:last-child) {
|
|
display: block;
|
|
border-bottom: 1px solid var(--divider);
|
|
}
|
|
|
|
.song-swipe {
|
|
margin-bottom: 20px;
|
|
min-height: calc(100vh - 60px);
|
|
}
|
|
|
|
|
|
.head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.cdk-drag-preview {
|
|
background-color: var(--surface-strong);
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
border: 1px solid var(--surface-border);
|
|
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);
|
|
}
|
|
|
|
.floating {
|
|
position: fixed;
|
|
right: 20px;
|
|
top: 12px;
|
|
z-index: 5;
|
|
}
|
|
|
|
.next-song {
|
|
color: var(--text-muted);
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 10px;
|
|
|
|
fa-icon {
|
|
padding: 6px;
|
|
}
|
|
}
|
|
|
|
.time {
|
|
color: var(--text-muted);
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 10px;
|
|
}
|