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
Describe the bug
The template edit form is unscrollable when Obsidian take my entire screen.
To Reproduce
Have a screen at 21".
Expected behavior
Able of scrolling
Additional context
The bug is caused by this css rules:
@media (min-width:100rem) {
form.svelte-8lqyxl {
display: flex; /* ← include this */flex-direction: column;
height:100%; /* ← ths too */overflow: hidden; /* ← including this */
}
.fields.svelte-8lqyxl {
flex:1;
height:100%; /* ← this one specifically */
}
.body.svelte-8lqyxl {
overflow-y: hidden; /* Need to be changed too */
}
}
The text was updated successfully, but these errors were encountered:
Describe the bug
The template edit form is unscrollable when Obsidian take my entire screen.
To Reproduce
Have a screen at 21".
Expected behavior
Able of scrolling
Additional context
The bug is caused by this css rules:
The text was updated successfully, but these errors were encountered: