mirror of
https://github.com/docmost/docmost.git
synced 2025-11-10 06:32:06 +10:00
* lock/unlock pages * remove using isLocked column - add default page edit state preference * * Move state management to editors (avoids flickers on edit mode switch) * Rename variables * Add strings to translation file * Memoize components in page component * Fix title editor sending update request on editable state change * fixed errors merging main * Fix embed view in read-only mode * remove unused line * sync * fix responsiveness on mobile --------- Co-authored-by: Philipinho <16838612+Philipinho@users.noreply.github.com>
28 lines
675 B
CSS
28 lines
675 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 (max-width: $mantine-breakpoint-sm) {
|
|
padding-left: var(--mantine-spacing-xs);
|
|
padding-right: var(--mantine-spacing-xs);
|
|
}
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.group {
|
|
@media (max-width: $mantine-breakpoint-sm) {
|
|
gap: var(--mantine-spacing-sm);
|
|
padding-inline: 0 !important;
|
|
}
|
|
}
|