feat: utf symbols

This commit is contained in:
Ali Gator 2024-04-27 14:55:33 +02:00
parent b68457c9a1
commit 2b1ebea049
5 changed files with 13 additions and 7 deletions

View File

@ -81,7 +81,8 @@ input[type="number"] {
} }
input[type="button"] { input[type="button"] {
min-width: 60px; min-width: 36px;
min-height: 40px;
margin: 0 5px; margin: 0 5px;
padding: 5px; padding: 5px;
font-weight: bold; font-weight: bold;
@ -156,6 +157,11 @@ label,
vertical-align: center; vertical-align: center;
} }
.next, .stop, .reset {
display: inline-block;
vertical-align: bottom;
}
.reset-menu .loop { .reset-menu .loop {
padding: 5px; padding: 5px;
display: inline-block; display: inline-block;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -50,13 +50,13 @@
<input <input
type="button" type="button"
name="start2d" name="start2d"
value="start" value=""
@click="store.toggleDraw2d()" @click="store.toggleDraw2d()"
/> />
</div> </div>
<div class="form-field"> <div class="form-field">
<label>Start from last result</label> <label>Start from last result</label>
<input type="button" value="start" @click="store.toggleDraw2dLast()" /> <input type="button" value="" @click="store.toggleDraw2dLast()" />
</div> </div>
<div class="form-field"> <div class="form-field">
<label>Start from picture</label><br /> <label>Start from picture</label><br />

View File

@ -38,7 +38,7 @@
<input <input
type="button" type="button"
name="start" name="start"
value="start" value=""
@click="store.toggleDraw1d()" @click="store.toggleDraw1d()"
/> />
</div> </div>

View File

@ -25,21 +25,21 @@
type="button" type="button"
name="next" name="next"
class="next" class="next"
value="next" value=""
@click="store.toggleNext()" @click="store.toggleNext()"
/> />
<input <input
type="button" type="button"
name="stop" name="stop"
class="stop" class="stop"
value="stop" value=""
@click="store.toggleStop()" @click="store.toggleStop()"
/> />
<input <input
type="button" type="button"
name="reset" name="reset"
class="reset" class="reset"
value="reset" value=""
@click="store.toggleReset()" @click="store.toggleReset()"
/> />
</div> </div>