feat: make experiment control buttons prettier

Use actual icons for the play, pause, skip, etc. buttons.
This commit is contained in:
Twirre Meulenbelt
2026-02-04 11:00:14 +01:00
parent b826b8ae47
commit 8fa2adc973
7 changed files with 59 additions and 25 deletions

22
src/App.module.css Normal file
View File

@@ -0,0 +1,22 @@
/* 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;
}
}