add dark mode ro resize bar

This commit is contained in:
SethBurkart123
2024-04-01 14:37:33 +11:00
parent 14bd7369d7
commit 3c67356f47
3 changed files with 37 additions and 1 deletions
+4
View File
@@ -52,6 +52,10 @@ html {
}
}
.dark .resizeBar {
background-color: rgb(28 28 30);
}
.connectedNotificationsWrapper > div > button > svg > g {
fill: var(--theme-primary) !important;
}
+3 -1
View File
@@ -6,7 +6,7 @@ import Switch from '../components/Switch';
import { sendThemeUpdate } from '../hooks/ThemeManagment';
import { XMarkIcon } from '@heroicons/react/24/outline';
export default function ThemeCreator() {
function ThemeCreator() {
const [theme, setTheme] = useState<CustomTheme>({
name: '',
description: '',
@@ -176,3 +176,5 @@ export default function ThemeCreator() {
function Divider() {
return <div className='w-full h-0.5 my-4 bg-zinc-200 dark:bg-zinc-700'></div>;
}
export default ThemeCreator;
+30
View File
File diff suppressed because one or more lines are too long