cleanup + now topper
This commit is contained in:
parent
6c81b89874
commit
82604bd42b
38 changed files with 123 additions and 8 deletions
14
tailwind.css
14
tailwind.css
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue