aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/appearance
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 22:13:42 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 22:13:42 +0530
commitd4afc1eec9706d0027ad4b44421f8868688d1969 (patch)
tree3e43ed144c8f76f8c21f738d8c0703490c577afe /src/features/appearance
parentrefactor: split 'environment' into 'environment-remote' with only the remote ... (diff)
downloadferdium-app-d4afc1eec9706d0027ad4b44421f8868688d1969.tar.gz
ferdium-app-d4afc1eec9706d0027ad4b44421f8868688d1969.tar.zst
ferdium-app-d4afc1eec9706d0027ad4b44421f8868688d1969.zip
refactor: move 'DEFAULT_APP_SETTINGS' from 'environment' to 'config' since it doesn't depend on the running process any more.
Diffstat (limited to 'src/features/appearance')
-rw-r--r--src/features/appearance/index.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts
index cb2f937eb..bb93507dc 100644
--- a/src/features/appearance/index.ts
+++ b/src/features/appearance/index.ts
@@ -1,7 +1,6 @@
1import color from 'color'; 1import color from 'color';
2import { reaction } from 'mobx'; 2import { reaction } from 'mobx';
3import { iconSizeBias } from '../../config'; 3import { DEFAULT_APP_SETTINGS, iconSizeBias } from '../../config';
4import { DEFAULT_APP_SETTINGS } from '../../environment';
5 4
6const STYLE_ELEMENT_ID = 'custom-appearance-style'; 5const STYLE_ELEMENT_ID = 'custom-appearance-style';
7 6