Skip to content

Commit 37b466b

Browse files
committed
UI improvements
1 parent b1ba92b commit 37b466b

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/App.vue

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
<v-list-item>
1717
<v-list-item-content>
1818
<v-textarea
19-
name="input-7-1"
20-
label="Input text"
19+
label="Input"
2120
v-model="text"
2221
@input="render"
2322
outlined
@@ -77,12 +76,12 @@
7776
<v-checkbox
7877
@change="applyFontSettings(true)"
7978
v-model="enableFontSimplification"
80-
label="Simplification (experimental)"
79+
label="Simplify (experimental)"
8180
dense
8281
class="ma-0"
8382
></v-checkbox>
8483
<div v-if="enableFontSimplification">
85-
<v-subheader>Simplification Deviation</v-subheader>
84+
<v-subheader>Simplify Deviation</v-subheader>
8685
<v-slider
8786
@input="applyFontSettings(true)"
8887
v-model="simplifyFactor"
@@ -106,7 +105,7 @@
106105
<v-checkbox
107106
@change="applyFontSettings(true)"
108107
v-model="enableFontSmoothing"
109-
label="Smoothing (experimental)"
108+
label="Smooth (experimental)"
110109
dense
111110
class="ma-0"
112111
></v-checkbox>
@@ -115,12 +114,12 @@
115114
v-if="enableFontSmoothing"
116115
@input="applyFontSettings(true)"
117116
:items="smoothingTypes"
118-
label="Smoothing Type"
117+
label="Smooth Type"
119118
v-model="smoothingType"
120119
></v-select>
121120

122121
<div v-if="enableFontSmoothing && smoothingType == 'catmull-rom'">
123-
<v-subheader>Smoothing amount</v-subheader>
122+
<v-subheader>Smooth amount</v-subheader>
124123
<v-slider
125124
@input="applyFontSettings(true)"
126125
v-model="smoothingFactor"
@@ -141,7 +140,9 @@
141140
</div>
142141
</div>
143142

144-
<v-btn block elevation="2" @click="exportSVG">Download SVG</v-btn>
143+
<v-btn color="primary" block elevation="2" @click="exportSVG"
144+
>Download SVG</v-btn
145+
>
145146
</v-list-item-content>
146147
</v-list-item>
147148
</v-list>
@@ -152,14 +153,14 @@
152153
plain
153154
href="https://gitlab.com/oskay/svg-fonts"
154155
target="_blank"
155-
><v-icon left> mdi-pencil </v-icon>Improve these fonts</v-btn
156+
>Improve these fonts<v-icon right> mdi-pencil </v-icon></v-btn
156157
>
157158
<v-btn
158159
large
159160
plain
160161
href="https://github.com/jvolker/svg-font-renderer"
161162
target="_blank"
162-
><v-icon left> mdi-pencil </v-icon>Improve this tool</v-btn
163+
>Improve this tool<v-icon right> mdi-pencil </v-icon></v-btn
163164
>
164165
</template>
165166
</v-navigation-drawer>

0 commit comments

Comments
 (0)