We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 867e1a4 commit 1d8ecb6Copy full SHA for 1d8ecb6
1 file changed
src/pages/Settings/components/GeneralSettings.tsx
@@ -105,36 +105,28 @@ export default function GeneralSettings() {
105
<Input.Wrapper mb="xl" label="UI Scale">
106
<Slider
107
defaultValue={settings.scale}
108
- min={70}
109
- max={130}
110
- step={5}
+ min={50}
+ max={150}
111
marks={[
112
{
113
- label: "70%",
114
- value: 70,
+ label: "50%",
+ value: 50,
115
},
116
117
- value: 80,
118
- },
119
- {
120
- value: 90,
+ label: "75%",
+ value: 75,
121
122
123
label: "100%",
124
value: 100,
125
126
127
- value: 110,
128
129
130
- value: 100,
131
132
133
- value: 120,
+ label: "125%",
+ value: 125,
134
135
136
- label: "130%",
137
- value: 130,
+ label: "150%",
+ value: 150,
138
139
]}
140
onChange={(value) => {
0 commit comments