You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Make.md plugin installed and with two lines of Spaces icons and the “Nav Header” at the bottom it covers the last folders and the “+Open Spaces” option at the end.
Describe the bug
[A clear and concise description of what the bug is.]
To Reproduce
Steps to reproduce the behavior:
Plugin MAKE.md
Nav Bar bottom
2 lines of Spaces icons
It covers the last folders and the “+Open Spaces” option.
Expected behavior
See the last folders and the option “+Open Spaces”.
Screenshots
Before
Setup Information
Device Type: PC
Operating System: Windows 11
Prism version: 3.5.3
Color Schemes Used: Color Schemes and Style -> Light/Dark Theme -> Color Scheme -> Dark
Obsidian Version: 1.6.7
Obsidian Installer Version: 1.6.5
Related Community plugins:
Additional context
Temporarily fixed with a CSS snippet:
.pt-nav-header-left-sidebar-position-bottom .workspace-drawer.mod-left .nav-header,
.pt-nav-header-left-sidebar-position-bottom .workspace-split.mod-left-split .nav-header,
.pt-nav-header-right-sidebar-position-bottom .workspace-drawer.mod-right .nav-header,
.pt-nav-header-right-sidebar-position-bottom .workspace-split.mod-right-split .nav-header {
/* se cambia de absolute a sticky para que no se tapen los ultimos archivos */
position: sticky;
bottom: calc(var(--size-2-2) + var(--scroll-bar-size));
z-index: var(--layer-popover);
order: 10;
width: -webkit-fill-available;
width: fill-available;
height: unset;
padding: 0 calc(var(--size-2-2) + var(--scroll-bar-size)) 0 var(--size-2-2);
pointer-events: none;
background-color: unset;
border-bottom: unset;
}
Changed
position: absolute;
to
position: sticky;
After
The text was updated successfully, but these errors were encountered:
With Make.md plugin installed and with two lines of Spaces icons and the “Nav Header” at the bottom it covers the last folders and the “+Open Spaces” option at the end.
Describe the bug
[A clear and concise description of what the bug is.]
To Reproduce
Steps to reproduce the behavior:
Expected behavior
See the last folders and the option “+Open Spaces”.
Screenshots
Before
Setup Information
Additional context
Temporarily fixed with a CSS snippet:
Changed
position: absolute;
to
position: sticky;
After
The text was updated successfully, but these errors were encountered: