Skip to content

Commit 0bdbfee

Browse files
committed
[design] improve theme radius default
1 parent 162a8b8 commit 0bdbfee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎src/index.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@ <h1 class="menu-item-header-text">Style</h1>
13151315
<divclass="input-wrap">
13161316
<labelfor="control-theme-radius">Radius</label>
13171317
<divclass="form-group form-group-block mb-0">
1318-
<inputid="control-theme-radius" class="control-theme-radius mr-3" type="range" min="0" max="300" value="0" step="10" tabindex="-1">
1318+
<inputid="control-theme-radius" class="control-theme-radius mr-3" type="range" min="0" max="300" value="0" step="5" tabindex="-1">
13191319
<divclass="control-theme-radius-count form-group-text form-group-medium form-group-radius-left"></div>
13201320
</div>
13211321
</div>

‎src/js/control.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2466,7 +2466,7 @@ var control = (function(){
24662466
element: helper.e(".control-theme-radius-default"),
24672467
type: "button",
24682468
func: function(){
2469-
mod.setValue("theme.radius",0.2);
2469+
mod.setValue("theme.radius",0.25);
24702470
theme.render.radius();
24712471
render.update();
24722472
}

‎src/js/state.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ var state = (function(){
219219
}
220220
},
221221
style: "dark",
222-
radius: 0.2
222+
radius: 0.25
223223
},
224224
background: {
225225
color: {

0 commit comments

Comments
(0)