mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
allow light mode
This commit is contained in:
parent
e46cbadc51
commit
39a64c8939
1 changed files with 4 additions and 1 deletions
|
@ -17,7 +17,10 @@ export default {
|
|||
|
||||
<style>
|
||||
.toast {
|
||||
@apply bg-dark-900/80 text-white flex flex-col justify-center fixed top-12 right-12 p-4 min-w-max shadow rounded duration-200 z-9999;
|
||||
@apply bg-white/80 text-black flex flex-col justify-center fixed top-12 right-12 p-4 min-w-max shadow rounded duration-200 z-9999;
|
||||
}
|
||||
.dark .toast {
|
||||
@apply bg-dark-900/80 text-white;
|
||||
}
|
||||
.toast button {
|
||||
@apply underline;
|
||||
|
|
Loading…
Reference in a new issue