initial theming dev

This commit is contained in:
Cory Dransfeldt 2023-03-11 17:12:34 -08:00
parent 5c673525d6
commit f1e52677ed
No known key found for this signature in database
47 changed files with 4008 additions and 9033 deletions

View file

@ -3,9 +3,25 @@
@tailwind utilities;
.paginator-text {
@apply text-gray-600 font-bold py-2 px-4;
@apply py-2 px-4 font-bold text-gray-600 dark:text-gray-200;
}
.post-tag {
@apply inline-block text-xs rounded-full py-2 px-4 mt-1 mr-1 bg-gray-300 dark:bg-gray-500;
}
@apply mt-1 mr-1 inline-block text-sm text-primary-400 hover:text-primary-500 dark:hover:text-primary-300;
}
.toggle-light {
@apply inline;
}
.dark .toggle-light {
@apply hidden;
}
.toggle-dark {
@apply hidden;
}
.dark .toggle-dark {
@apply inline;
}