Files
pepperplus-ui/src/App.module.css
Twirre Meulenbelt 8fa2adc973 feat: make experiment control buttons prettier
Use actual icons for the play, pause, skip, etc. buttons.
2026-02-04 11:00:14 +01:00

23 lines
422 B
CSS

/* Spread header items. Make home button centered until there is not enough space. */
.header {
display: flex;
flex-direction: row;
gap: 1rem;
align-items: center;
/* Center each */
& > div {
flex: 1;
display: flex;
justify-content: center;
}
/* Except first and last */
& > div:first-child {
justify-content: flex-start;
}
& > div:last-child {
justify-content: flex-end;
}
}