|
16 | 16 | <v-list-item>
|
17 | 17 | <v-list-item-content>
|
18 | 18 | <v-textarea
|
19 |
| - name="input-7-1" |
20 |
| - label="Input text" |
| 19 | + label="Input" |
21 | 20 | v-model="text"
|
22 | 21 | @input="render"
|
23 | 22 | outlined
|
|
77 | 76 | <v-checkbox
|
78 | 77 | @change="applyFontSettings(true)"
|
79 | 78 | v-model="enableFontSimplification"
|
80 |
| - label="Simplification (experimental)" |
| 79 | + label="Simplify (experimental)" |
81 | 80 | dense
|
82 | 81 | class="ma-0"
|
83 | 82 | ></v-checkbox>
|
84 | 83 | <div v-if="enableFontSimplification">
|
85 |
| - <v-subheader>Simplification Deviation</v-subheader> |
| 84 | + <v-subheader>Simplify Deviation</v-subheader> |
86 | 85 | <v-slider
|
87 | 86 | @input="applyFontSettings(true)"
|
88 | 87 | v-model="simplifyFactor"
|
|
106 | 105 | <v-checkbox
|
107 | 106 | @change="applyFontSettings(true)"
|
108 | 107 | v-model="enableFontSmoothing"
|
109 |
| - label="Smoothing (experimental)" |
| 108 | + label="Smooth (experimental)" |
110 | 109 | dense
|
111 | 110 | class="ma-0"
|
112 | 111 | ></v-checkbox>
|
|
115 | 114 | v-if="enableFontSmoothing"
|
116 | 115 | @input="applyFontSettings(true)"
|
117 | 116 | :items="smoothingTypes"
|
118 |
| - label="Smoothing Type" |
| 117 | + label="Smooth Type" |
119 | 118 | v-model="smoothingType"
|
120 | 119 | ></v-select>
|
121 | 120 |
|
122 | 121 | <div v-if="enableFontSmoothing && smoothingType == 'catmull-rom'">
|
123 |
| - <v-subheader>Smoothing amount</v-subheader> |
| 122 | + <v-subheader>Smooth amount</v-subheader> |
124 | 123 | <v-slider
|
125 | 124 | @input="applyFontSettings(true)"
|
126 | 125 | v-model="smoothingFactor"
|
|
141 | 140 | </div>
|
142 | 141 | </div>
|
143 | 142 |
|
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 | + > |
145 | 146 | </v-list-item-content>
|
146 | 147 | </v-list-item>
|
147 | 148 | </v-list>
|
|
152 | 153 | plain
|
153 | 154 | href="https://gitlab.com/oskay/svg-fonts"
|
154 | 155 | 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 |
156 | 157 | >
|
157 | 158 | <v-btn
|
158 | 159 | large
|
159 | 160 | plain
|
160 | 161 | href="https://github.com/jvolker/svg-font-renderer"
|
161 | 162 | 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 |
163 | 164 | >
|
164 | 165 | </template>
|
165 | 166 | </v-navigation-drawer>
|
|
0 commit comments