diff --git a/app/components/exporter.module.scss b/app/components/exporter.module.scss index 5e992e7fd..fe2a13329 100644 --- a/app/components/exporter.module.scss +++ b/app/components/exporter.module.scss @@ -2,6 +2,9 @@ &-body { margin-top: 20px; } + div:not(.no-dark) > svg { + filter: invert(0.5); + } } .export-content { diff --git a/app/components/mask.module.scss b/app/components/mask.module.scss index d66d98864..40c78a4d9 100644 --- a/app/components/mask.module.scss +++ b/app/components/mask.module.scss @@ -4,6 +4,10 @@ display: flex; flex-direction: column; + div:not(.no-dark) > svg { + filter: invert(0.5); + } + .mask-page-body { padding: 20px; overflow-y: auto; diff --git a/app/components/mask.tsx b/app/components/mask.tsx index 2a6cd3984..24c726a60 100644 --- a/app/components/mask.tsx +++ b/app/components/mask.tsx @@ -465,8 +465,6 @@ export function MaskPage(props: { className?: string }) { }); }; - const isMobileScreen = useMobileScreen(); - return ( <>