Remove header on phone
Hey everyone. Im not sure if Im doing something wrong but when I try to hide the header with a custom css, nothing happens. This is what I used:
.mantine-Header-root {
width: fit-content;
margin: auto;
}
Any help would be appreciated.
Thanks.
2 Replies
Thank you for submitting a support request.
Depending on the volume of requests, our team should get in contact with you shortly.
⚠️ Please include the following details in your post or we may reject your request without further comment: - Log (See https://homarr.dev/docs/community/faq#how-do-i-open-the-console--log) - Operating system (Unraid, TrueNAS, Ubuntu, ...) - Exact Homarr version (eg. 0.15.0, not latest) - Configuration (eg. docker-compose, screenshot or similar. Use ``your-text`` to format) - Other relevant information (eg. your devices, your browser, ...)
Frequently Asked Questions | Homarr documentation
Can I install Homarr on a Raspberry Pi?
Hey, you need to set display: none to mantine-AppShell-header and then paddin-top: 0; to mantine-AppShell-main
.mantine-AppShell-header {
display: none;
}
mantine-AppShell-main {
padding-top: 0px;
}