mejoras de UI 2

This commit is contained in:
2025-08-10 00:58:31 -06:00
parent 493d236dc4
commit d3d0811a9f
4 changed files with 49 additions and 10 deletions

View File

@@ -68,8 +68,10 @@ const cycleRepeat = () => {
/* Allow parent to control overall height budget */
height: var(--playback-controls-height, auto);
display: flex;
gap: 10px;
gap: 4px;
align-items: center;
flex-wrap: nowrap;
white-space: nowrap;
}
.shuffle-btn:hover {
@@ -97,10 +99,18 @@ const cycleRepeat = () => {
box-shadow: 0 0 20px var(--accent-primary);
}
/* Keep layout from expanding on hover transforms */
.playback-controls :deep(.base-button.icon:hover) {
transform: none !important;
}
.playback-controls :deep(.icon-button:hover .icon) {
transform: none !important;
}
/* Responsive design */
@media (max-width: 768px) {
.playback-controls {
gap: 8px;
gap: 4px;
}
}
</style>