diff options
Diffstat (limited to 'src/components/site-header.tsx')
| -rw-r--r-- | src/components/site-header.tsx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/components/site-header.tsx b/src/components/site-header.tsx index dca4996..70a2068 100644 --- a/src/components/site-header.tsx +++ b/src/components/site-header.tsx @@ -1,8 +1,6 @@ import {Separator} from "@/components/ui/separator" -import {SidebarTrigger} from "@/components/ui/sidebar" import {useAppSelector} from "@/hooks.ts"; import {App} from "@/models/app.ts" -import {Offerwall} from "@/pages/Offerwall.tsx"; const SiteHeader = () => { const app: App = useAppSelector(state => state.app) @@ -10,13 +8,8 @@ const SiteHeader = () => { return ( <header className="group-has-data-[collapsible=icon]/sidebar-wrapper:h-12 flex h-12 shrink-0 items-center gap-2 border-b transition-[width,height] ease-linear"> - <div className="flex w-full items-center gap-1 px-4 lg:gap-2 lg:px-6"> - <SidebarTrigger/> + <div className="flex w-full items-center gap-1 px-2 lg:gap-2 lg:px-4"> - <Separator - orientation="vertical" - className="mx-2 data-[orientation=vertical]:h-4" - /> <h1 className="text-base font-medium"> {app.currentPage === 'offerwall' && "Offerwall"} {app.currentPage === 'questions' && "Profiling Questions"} |
