diff --git a/src/mobx/stores/helpers/STheme.ts b/src/mobx/stores/helpers/STheme.ts index 4a110e56..1d85ad36 100644 --- a/src/mobx/stores/helpers/STheme.ts +++ b/src/mobx/stores/helpers/STheme.ts @@ -95,7 +95,7 @@ export default class STheme { ...this.settings.get("appearance:theme:overrides"), light: this.isLight(), - "min-opacity": 1, + "min-opacity": 0, }; } diff --git a/src/pages/RevoltApp.tsx b/src/pages/RevoltApp.tsx index f1c8a1f0..345b930b 100644 --- a/src/pages/RevoltApp.tsx +++ b/src/pages/RevoltApp.tsx @@ -8,7 +8,6 @@ import { isTouchscreenDevice } from "../lib/isTouchscreenDevice"; import Popovers from "../context/intermediate/Popovers"; import Notifications from "../context/revoltjs/Notifications"; import StateMonitor from "../context/revoltjs/StateMonitor"; -import SyncManager from "../context/revoltjs/SyncManager"; import { Titlebar } from "../components/native/Titlebar"; import BottomNavigation from "../components/navigation/BottomNavigation"; @@ -28,7 +27,6 @@ import Settings from "./settings/Settings"; const Routes = styled.div` min-width: 0; display: flex; - overflow: hidden; flex-direction: column; position: relative; background: var(--primary-background);