summaryrefslogtreecommitdiffstats
path: root/src/features/appearance/index.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/features/appearance/index.ts
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/features/appearance/index.ts')
-rw-r--r--src/features/appearance/index.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts
index 46403275e..049080505 100644
--- a/src/features/appearance/index.ts
+++ b/src/features/appearance/index.ts
@@ -3,14 +3,14 @@ import { reaction } from 'mobx';
3import TopBarProgress from 'react-topbar-progress-indicator'; 3import TopBarProgress from 'react-topbar-progress-indicator';
4 4
5import { pathExistsSync, readFileSync } from 'fs-extra'; 5import { pathExistsSync, readFileSync } from 'fs-extra';
6import { isWindows, isLinux } from '../../environment';
7import { 6import {
8 DEFAULT_APP_SETTINGS, 7 DEFAULT_APP_SETTINGS,
9 iconSizeBias,
10 SIDEBAR_SERVICES_LOCATION_TOPLEFT,
11 SIDEBAR_SERVICES_LOCATION_CENTER,
12 SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT, 8 SIDEBAR_SERVICES_LOCATION_BOTTOMRIGHT,
9 SIDEBAR_SERVICES_LOCATION_CENTER,
10 SIDEBAR_SERVICES_LOCATION_TOPLEFT,
11 iconSizeBias,
13} from '../../config'; 12} from '../../config';
13import { isLinux, isWindows } from '../../environment';
14import { userDataPath } from '../../environment-remote'; 14import { userDataPath } from '../../environment-remote';
15 15
16const STYLE_ELEMENT_ID = 'custom-appearance-style'; 16const STYLE_ELEMENT_ID = 'custom-appearance-style';