fix: class names

This commit is contained in:
Cory Dransfeldt 2024-04-16 08:43:38 -07:00
parent e935d25c0b
commit 4034a6d942
No known key found for this signature in database
6 changed files with 42 additions and 42 deletions

View file

@ -1,4 +1,4 @@
.theme__toggle {
.theme-toggle {
background: transparent;
padding: 0;
@ -21,21 +21,21 @@
}
.theme__dark {
& .theme__toggle > .light {
& .theme-toggle > .light {
display: inline;
}
& .theme__toggle > .dark {
& .theme-toggle > .dark {
display: none;
}
}
.theme__light {
& .theme__toggle > .light {
& .theme-toggle > .light {
display: none;
}
& .theme__toggle > .dark {
& .theme-toggle > .dark {
display: inline;
}
}