diff --git a/src/contentScripts/views/App.vue b/src/contentScripts/views/App.vue index 996558da..1061e65b 100644 --- a/src/contentScripts/views/App.vue +++ b/src/contentScripts/views/App.vue @@ -9,7 +9,7 @@ import { useDark } from '~/composables/useDark' import { OVERLAY_SCROLL_BAR_SCROLL } from '~/constants/globalEvents' import { AppPage, LanguageType } from '~/enums/appEnums' import { accessKey, settings } from '~/logic' -import { getUserID, hexToHSL, isHomePage, scrollToTop } from '~/utils/main' +import { getUserID, isHomePage, scrollToTop } from '~/utils/main' import emitter from '~/utils/mitt' const { isDark } = useDark() diff --git a/src/styles/adaptedStyles/common/topBar.scss b/src/styles/adaptedStyles/common/topBar.scss index 9886bd05..34e1fdfc 100644 --- a/src/styles/adaptedStyles/common/topBar.scss +++ b/src/styles/adaptedStyles/common/topBar.scss @@ -1,5 +1,9 @@ .bewly-design { // Implement specific modifications to the page, like tweaking the layout, and place those styles here + .large-header { + background-color: transparent; + } + .bili-header .slide-down, .bili-header .mini-header { background-color: var(--bew-elevated) !important; diff --git a/src/styles/index.ts b/src/styles/index.ts index a06e5cfe..5f93a5ae 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -6,4 +6,4 @@ import 'uno.css' import './adaptedStyles' import './transitionAndTransitionGroup.scss' import './blockAds.scss' -import './remove-original-top-bar.scss' +import './removeBiliTopBar.scss' diff --git a/src/styles/remove-original-top-bar.scss b/src/styles/removeBiliTopBar.scss similarity index 100% rename from src/styles/remove-original-top-bar.scss rename to src/styles/removeBiliTopBar.scss