diff options
author | rstular <rok@stular.eu> | 2020-05-20 11:14:52 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-05-20 11:53:56 +0200 |
commit | 01f9eef0a5b397c12f3eee9c801167f851d77251 (patch) | |
tree | d708cf68f2640eff7ce69b314dd91a2770d2ee93 /dist/pages/settings.html | |
parent | Bug fix - modal opens when hash is proivded (diff) | |
download | beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.tar beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.tar.gz beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.tar.bz2 beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.tar.lz beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.tar.xz beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.tar.zst beziapp-01f9eef0a5b397c12f3eee9c801167f851d77251.zip |
Diffstat (limited to '')
-rw-r--r-- | dist/pages/settings.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/dist/pages/settings.html b/dist/pages/settings.html index 28d4df7..b0e70ae 100644 --- a/dist/pages/settings.html +++ b/dist/pages/settings.html @@ -71,14 +71,16 @@ <div class="col s12"> <h3><b class="title-secondary">Beži</b><span class="title-primary">App</span> </h3> - <h4 class="subheader"><x-su>settings</x-su></h4> + <h4 class="subheader general-text"><x-su>settings</x-su></h4> </div> </div> <div class="row"> - <h5><x-su>language</x-su></h5> + <div class="col s12"> + <h5 class="general-text"><x-su>language</x-su></h5> + </div> <div class="input-field col s12"> <i class="material-icons prefix">translate</i> - <select class="lang-select icons" id="select-language"> + <select class="lang-select icons input-select" id="select-language"> <option value="sl" id="option-sl" data-icon="/img/flags/sl.svg" selected>Slovenščina</option> <option value="en" id="option-en" data-icon="/img/flags/en.svg">English</option> </select> @@ -87,10 +89,12 @@ </div> <div class="row"> - <h5><x-su>theme</x-su></h5> + <div class="col s12"> + <h5 class="general-text"><x-su>theme</x-su></h5> + </div> <div class="input-field col s12"> <i class="material-icons prefix">palette</i> - <select class="theme-select" id="select-theme"> + <select class="theme-select input-select" id="select-theme"> <option value="light" id="option-light" data-theme="light" selected>Light</option> <option value="dark" id="option-dark" data-theme="dark">Dark</option> </select> |