feat: make experiment control buttons prettier
Use actual icons for the play, pause, skip, etc. buttons.
This commit is contained in:
22
src/App.module.css
Normal file
22
src/App.module.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user