aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.html
diff options
context:
space:
mode:
authorasuyou <asuyou@users.noreply.github.com>2021-12-17 18:35:43 +0200
committerasuyou <asuyou@users.noreply.github.com>2021-12-17 18:35:43 +0200
commit61900a7ba8b11beb2125f31072abe8bcd1d6a10c (patch)
treedfc1a3e02d550aa77482576e60658ab58c303541 /ui/src/app/app.component.html
parentMade theme toggleable (diff)
downloadmetube-61900a7ba8b11beb2125f31072abe8bcd1d6a10c.tar.gz
metube-61900a7ba8b11beb2125f31072abe8bcd1d6a10c.tar.bz2
metube-61900a7ba8b11beb2125f31072abe8bcd1d6a10c.zip
Theme button is now material button
Diffstat (limited to 'ui/src/app/app.component.html')
-rw-r--r--ui/src/app/app.component.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html
index 248ea76..3fc9bd2 100644
--- a/ui/src/app/app.component.html
+++ b/ui/src/app/app.component.html
@@ -13,8 +13,12 @@
</div>
-->
<div>
- <span class="text-white">Toggle Theme</span>
- <input style="margin: 1rem;" type="checkbox" [ngModel]="this.darkMode" aria-label="Toggle theme" (change)="themeChanged()">
+ <button class="btn btn-secondary" aria-label="Toggle theme" (click)="themeChanged()">
+ <i *ngIf="darkMode; else sunIcon" class="bi bi-sun-fill"></i>
+ <ng-template #sunIcon>
+ <i class="bi bi-moon-stars-fill"></i>
+ </ng-template>
+ </button>
</div>
</nav>
bgstack15