24 lines
940 B
Plaintext
24 lines
940 B
Plaintext
<section>
|
|
<strong class="divider txt-large">Appearance</strong>
|
|
|
|
<div class="theme-switcher flex gap max-width justify-center txt-small margin-block-start-half">
|
|
<label class="btn theme-switcher__btn">
|
|
<%= icon_tag "sun" %>
|
|
<span class="overflow-ellipsis">Always light</span>
|
|
<input type="radio" name="theme" data-action="click->theme#setLight" data-theme-target="lightButton">
|
|
</label>
|
|
|
|
<label class="btn theme-switcher__btn" >
|
|
<%= icon_tag "moon" %>
|
|
<span class="overflow-ellipsis">Always dark</span>
|
|
<input type="radio" name="theme" data-action="click->theme#setDark" data-theme-target="darkButton">
|
|
</label>
|
|
|
|
<label class="btn theme-switcher__btn">
|
|
<%= icon_tag "monitor" %>
|
|
<span class="overflow-ellipsis">Same as OS</span>
|
|
<input type="radio" name="theme" data-action="click->theme#setAuto" data-theme-target="autoButton">
|
|
</label>
|
|
</div>
|
|
</section>
|