mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
add dark mode ro resize bar
This commit is contained in:
@@ -52,6 +52,10 @@ html {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark .resizeBar {
|
||||||
|
background-color: rgb(28 28 30);
|
||||||
|
}
|
||||||
|
|
||||||
.connectedNotificationsWrapper > div > button > svg > g {
|
.connectedNotificationsWrapper > div > button > svg > g {
|
||||||
fill: var(--theme-primary) !important;
|
fill: var(--theme-primary) !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import Switch from '../components/Switch';
|
|||||||
import { sendThemeUpdate } from '../hooks/ThemeManagment';
|
import { sendThemeUpdate } from '../hooks/ThemeManagment';
|
||||||
import { XMarkIcon } from '@heroicons/react/24/outline';
|
import { XMarkIcon } from '@heroicons/react/24/outline';
|
||||||
|
|
||||||
export default function ThemeCreator() {
|
function ThemeCreator() {
|
||||||
const [theme, setTheme] = useState<CustomTheme>({
|
const [theme, setTheme] = useState<CustomTheme>({
|
||||||
name: '',
|
name: '',
|
||||||
description: '',
|
description: '',
|
||||||
@@ -176,3 +176,5 @@ export default function ThemeCreator() {
|
|||||||
function Divider() {
|
function Divider() {
|
||||||
return <div className='w-full h-0.5 my-4 bg-zinc-200 dark:bg-zinc-700'></div>;
|
return <div className='w-full h-0.5 my-4 bg-zinc-200 dark:bg-zinc-700'></div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default ThemeCreator;
|
||||||
Reference in New Issue
Block a user