diff options
author | Rémy Raes <contact@remyraes.com> | 2022-12-22 23:14:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-22 23:14:42 +0100 |
commit | 77f043752d2937d91726e3e9aca7151c44c72d3b (patch) | |
tree | 18663261d608122703336bd92699a49f8dba35d2 /src-vue/src/style.css | |
parent | 5b4c70830f5b66f0d8f2ef62ceb77b2888c08b29 (diff) | |
download | FlightCore-77f043752d2937d91726e3e9aca7151c44c72d3b.tar.gz FlightCore-77f043752d2937d91726e3e9aca7151c44c72d3b.zip |
feat: Maximize button + clean menubar layout (#119)
* feat: add a button to toggle window maximize status
* fix: attach services container to bottom
Container was fixed, but with no positioning indication,
which fucked its location while going fullscreen.
* refactor: encase menu in navigation container
* fix: remove CSS ID duplication
* refactor: put window controls inside menu bar
* feat: add style to additional submenu
* fix: don't color focused menu items
* fix: restore menu bar debug indicator
Diffstat (limited to 'src-vue/src/style.css')
-rw-r--r-- | src-vue/src/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-vue/src/style.css b/src-vue/src/style.css index 58fd1d6b..4401ac96 100644 --- a/src-vue/src/style.css +++ b/src-vue/src/style.css @@ -37,6 +37,7 @@ body { .fc-container { position: relative; - height: calc(100% - var(--fc-menu_height)); + padding-top: var(--fc-menu_height); + height: 100%; color: white; } |