fix: revert layout variant to 'header-first' in ModuleLayout and update HeaderLayout logo
This commit is contained in:
@@ -10,12 +10,9 @@ export default function HeaderLayout() {
|
|||||||
<Group h="100%" px="md" justify="space-between">
|
<Group h="100%" px="md" justify="space-between">
|
||||||
<Group>
|
<Group>
|
||||||
<Burger opened={mobileOpened} onClick={toggleMobile} hiddenFrom="sm" size="sm" />
|
<Burger opened={mobileOpened} onClick={toggleMobile} hiddenFrom="sm" size="sm" />
|
||||||
<Text fw={700} size="lg">
|
<Text>LOGO</Text>
|
||||||
Mock Header (bg="green.1")
|
|
||||||
</Text>
|
|
||||||
<Select
|
<Select
|
||||||
w={180}
|
size="xs"
|
||||||
size="sm"
|
|
||||||
variant="filled"
|
variant="filled"
|
||||||
leftSection={<Globe size={16} />}
|
leftSection={<Globe size={16} />}
|
||||||
data={[
|
data={[
|
||||||
|
|||||||
@@ -5,8 +5,7 @@ import { MENU_ITEMS } from './data/menu.data';
|
|||||||
|
|
||||||
export default function ModuleLayout({ children }: { children: React.ReactNode }) {
|
export default function ModuleLayout({ children }: { children: React.ReactNode }) {
|
||||||
const configAppShell: CoreAppShellConfig = {
|
const configAppShell: CoreAppShellConfig = {
|
||||||
// variant: 'header-first',
|
variant: 'header-first',
|
||||||
variant: 'sidebar-first',
|
|
||||||
features: {
|
features: {
|
||||||
desktopCollapseVariant: 'mini',
|
desktopCollapseVariant: 'mini',
|
||||||
withUtilityBar: false,
|
withUtilityBar: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user