aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/appearance/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/appearance/index.ts')
-rw-r--r--src/features/appearance/index.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts
index da75bf57b..46403275e 100644
--- a/src/features/appearance/index.ts
+++ b/src/features/appearance/index.ts
@@ -146,12 +146,13 @@ function generateServiceRibbonWidthStyle(
146) { 146) {
147 const width = Number(widthStr); 147 const width = Number(widthStr);
148 const iconSize = Number(iconSizeStr) - iconSizeBias; 148 const iconSize = Number(iconSizeStr) - iconSizeBias;
149 let fontSize = 11;
150 let tabItemHeightBias = -5;
151 let sidebarSizeBias = 22;
152 const tabItemWidthBias = 3; 149 const tabItemWidthBias = 3;
153 const verticalStyleOffset = 29; 150 const verticalStyleOffset = 29;
154 151
152 let fontSize: number;
153 let tabItemHeightBias: number;
154 let sidebarSizeBias: number;
155
155 switch (width) { 156 switch (width) {
156 case 35: { 157 case 35: {
157 fontSize = 9; 158 fontSize = 9;