feishin/src/renderer/features/player/components/playerbar.module.css
Jeff c1330d92b2
Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

40 lines
736 B
CSS

.container {
width: 100vw;
height: 100%;
border-top: var(--theme-colors-border);
}
.controls-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
gap: 1rem;
height: 100%;
@media (width < 768px) {
grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr) minmax(0, 0.5fr);
}
}
.right-grid-item {
align-self: center;
width: 100%;
height: 100%;
overflow: hidden;
}
.left-grid-item {
width: 100%;
height: 100%;
overflow: hidden;
}
.center-grid-item {
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
overflow: hidden;
}