mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 04:52:37 +10:00
* fix maths node * render default html width * Add page export module * with support for html and markdown exports * Page export UI * Add PDF print too * remove unused import
16 lines
425 B
CSS
16 lines
425 B
CSS
.header {
|
|
height: 45px;
|
|
background-color: var(--mantine-color-body);
|
|
padding-left: var(--mantine-spacing-md);
|
|
padding-right: var(--mantine-spacing-md);
|
|
position: fixed;
|
|
z-index: 99;
|
|
top: var(--app-shell-header-offset, 0rem);
|
|
inset-inline-start: var(--app-shell-navbar-offset, 0rem);
|
|
inset-inline-end: var(--app-shell-aside-offset, 0rem);
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|