aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-06-13 18:01:27 +0100
committerLibravatar GitHub <noreply@github.com>2022-06-13 17:01:27 +0000
commitdc13e032ea3c308185becdb2cd2444e126ae7145 (patch)
tree9b1bfd6dccde4fa1830b3f2c3ca253f35c346fa2 /src/features
parent6.0.0-nightly.59 [skip ci] (diff)
downloadferdium-app-dc13e032ea3c308185becdb2cd2444e126ae7145.tar.gz
ferdium-app-dc13e032ea3c308185becdb2cd2444e126ae7145.tar.zst
ferdium-app-dc13e032ea3c308185becdb2cd2444e126ae7145.zip
Fix service labels cut off when using Slim Sidebar (#245)
fix #232
Diffstat (limited to 'src/features')
-rw-r--r--src/features/appearance/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts
index 5b005586e..7562475a6 100644
--- a/src/features/appearance/index.ts
+++ b/src/features/appearance/index.ts
@@ -230,6 +230,12 @@ function generateServiceRibbonWidthStyle(
230 width: ${minimumAdjustedIconSize}px !important; 230 width: ${minimumAdjustedIconSize}px !important;
231 ${useGrayscaleServices ? graysacleServices : null}, 231 ${useGrayscaleServices ? graysacleServices : null},
232 } 232 }
233 .tab-item .tab-item__label {
234 margin-left: 0px !important;
235 }
236 .tab-item.is-label-enabled {
237 padding-bottom: 0px !important;
238 }
233 .sidebar__button { 239 .sidebar__button {
234 font-size: ${width / 3}px !important; 240 font-size: ${width / 3}px !important;
235 } 241 }