|
|
|
@ -22,13 +22,13 @@ |
|
|
|
|
|
|
|
<div class="mb-3"> |
|
|
|
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group"> |
|
|
|
<input id="btncheck1" type="radio" class="btn-check" name="theme" autocomplete="off"> |
|
|
|
<input id="btncheck1" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="light"> |
|
|
|
<label class="btn btn-outline-primary" for="btncheck1">Light</label> |
|
|
|
|
|
|
|
<input id="btncheck2" type="radio" class="btn-check" name="theme" autocomplete="off"> |
|
|
|
<input id="btncheck2" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="dark"> |
|
|
|
<label class="btn btn-outline-primary" for="btncheck2">Dark</label> |
|
|
|
|
|
|
|
<input id="btncheck3" type="radio" class="btn-check" name="theme" autocomplete="off"> |
|
|
|
<input id="btncheck3" v-model="$root.userTheme" type="radio" class="btn-check" name="theme" autocomplete="off" value="auto"> |
|
|
|
<label class="btn btn-outline-primary" for="btncheck3">Auto</label> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|