0
0
Fork 0
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:
Delta1925 2023-04-16 11:26:32 +02:00
parent 352660231d
commit 9cea1cacad
No known key found for this signature in database
GPG key ID: 1C21ACE44193CB25
14 changed files with 199 additions and 118 deletions

View file

@ -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;
}