diff options
| author | AAGaming <aagaming@riseup.net> | 2024-07-03 22:49:42 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-07-03 22:49:42 -0400 |
| commit | 2b2a1d9e39addd03c357a1ba08f6241b980a2759 (patch) | |
| tree | df4af378c89b74d6ec9e17c4023b995c2c43f0e6 /frontend/src/plugin-loader.tsx | |
| parent | 86df2e0fd936d3608fb030b5f9e0be23a6232dd7 (diff) | |
| download | decky-loader-2b2a1d9e39addd03c357a1ba08f6241b980a2759.tar.gz decky-loader-2b2a1d9e39addd03c357a1ba08f6241b980a2759.zip | |
make the qam fix css more accurate
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
| -rw-r--r-- | frontend/src/plugin-loader.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index d17b9a9a..2edf196d 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -119,13 +119,16 @@ class PluginLoader extends Logger { {` /* fixes random overscrolling in QAM */ .${quickAccessMenuClasses?.TabContentColumn} { - flex-grow: 1; + flex-grow: 1 !important; margin-top: 0 !important; margin-bottom: 0 !important; + justify-content: center !important; } .${quickAccessMenuClasses?.Tab} { - flex-grow: 1; + flex-grow: 1 !important; height: unset !important; + --decky-qam-tab-max-height: 64px; /* make things a little easier for themers */ + max-height: var(--decky-qam-tab-max-height) !important; } /* they broke the footer a while ago and forgot to update the styles LOL */ .${quickAccessMenuClasses?.Tabs}.${quickAccessMenuClasses.TabsWithFooter} { |
