diff options
Diffstat (limited to 'styles')
-rw-r--r-- | styles/editor.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/styles/editor.css b/styles/editor.css index cfffb71..5b9c7b6 100644 --- a/styles/editor.css +++ b/styles/editor.css @@ -38,3 +38,34 @@ grid-row: 3; background-color: var(--c100); } + +.appGrid .viewer { + display: grid; + grid-template-rows: 1fr 80px; +} + +.appGrid .viewer .controls { + position: relative; +} + +.appGrid .viewer .controls .abscenter { + margin-left: 24px; +} + +.appGrid .viewer .controls .r0 { + margin-right: 16px; +} + +.appGrid .viewer .controls .MuiFab-root.playPause { + background-color: var(--blue); +} + +.appGrid .viewer .controls .MuiFab-root { + color: var(--fg); +} + +.appGrid .viewer .controls .MuiFab-root:not(.playPause) { + background-color: var(--transparent); + box-shadow: none; + margin: 4px; +} |