Hi Teams,
I noticed that when layout is set as light-sidebar the configuration
header: {
display: true,
default: {
container: "fluid",
fixed: {
desktop: true,
mobile: true,
},
menu: {
display: true,
iconType: "keenthemes",
},
},
},
Hi Krystian,
Sorry for the late reply.
By default, we override fixed properties for light sidebar layout. To make the header fixed on light sidebar layout you should remove the following code from src/core/services/LayoutService.ts.
if (layout === "light-sidebar") {
this.configStore.setLayoutConfigProperty(
"header.default.fixed.desktop",
false,
);
this.configStore.setLayoutConfigProperty(
"header.default.fixed.mobile",
false,
);
}