mirror of
https://git.verdigado.com/NB-Public/simple-wkd.git
synced 2024-12-06 14:52:41 +01:00
Add darkmode and prettier
This commit is contained in:
parent
352660231d
commit
9cea1cacad
14 changed files with 199 additions and 118 deletions
|
@ -1,15 +1,23 @@
|
|||
.button {
|
||||
@apply bg-teal-50;
|
||||
@apply p-4;
|
||||
@apply hover:drop-shadow-md;
|
||||
@apply hover:rounded-lg;
|
||||
.input {
|
||||
@apply focus:rounded-lg;
|
||||
@apply dark:bg-neutral-800;
|
||||
}
|
||||
|
||||
.round,
|
||||
.button {
|
||||
@apply border-black;
|
||||
@apply border;
|
||||
@apply rounded-tr-lg;
|
||||
@apply rounded-bl-lg;
|
||||
@apply transition-all;
|
||||
}
|
||||
@apply bg-slate-200;
|
||||
@apply p-4;
|
||||
@apply hover:rounded-lg;
|
||||
@apply hover:drop-shadow-md;
|
||||
@apply dark:bg-slate-700;
|
||||
}
|
||||
|
||||
.input,
|
||||
.button {
|
||||
@apply rounded-bl-lg;
|
||||
@apply rounded-tr-lg;
|
||||
@apply border;
|
||||
@apply border-black;
|
||||
@apply transition-all;
|
||||
@apply duration-300;
|
||||
@apply dark:border-neutral-300;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue