diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-07-27 17:36:01 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-07-27 17:36:01 +0200 |
commit | ae34111f773264cb44dd86ce304cc69c9d83fd23 (patch) | |
tree | 083e202951d7ce0f97c8b589fa655506e9ab8079 /styles | |
parent | 1d71bf0c49693c9a896a653d9755e612ead8f6e4 (diff) |
menu bar physics looking very saucy :tada:
Diffstat (limited to 'styles')
-rw-r--r-- | styles/presentation.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/styles/presentation.css b/styles/presentation.css index 4f872e2..4d199ea 100644 --- a/styles/presentation.css +++ b/styles/presentation.css @@ -77,3 +77,16 @@ #menu .info .buttons .inner .MuiButton-root { margin: 8px; } #menu .info .buttons .inner { margin: -8px; } +.menuBar { + position: absolute; + width: 200px; + height: 50px; + background-color: #ffff00; + + top: calc(var(--y) * 1px); + left: calc(var(--x) * 1px); + + transform: translate(-50%, -50%); + pointer-events: none; +} + |