cleanup + now topper

This commit is contained in:
Cory Dransfeldt 2023-03-12 11:17:56 -07:00
parent 6c81b89874
commit 82604bd42b
No known key found for this signature in database
38 changed files with 123 additions and 8 deletions

View file

@ -2,6 +2,16 @@
@tailwind components;
@tailwind utilities;
::-moz-selection {
color: theme(colors.gray.800);
background: theme(colors.purple.400);
}
::selection {
color: theme(colors.gray.800);
background: theme(colors.purple.400);
}
.paginator-text {
@apply py-2 px-4 font-bold text-gray-600 dark:text-gray-200;
}
@ -25,3 +35,7 @@
.dark .toggle-dark {
@apply inline;
}
.icon-inline svg {
@apply inline;
}