-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix properties crashing on vertical mobile views #99
Comments
Will remove the properties title up top on mobile |
Okay, so simple hiding is not.. optimal. Option A@media screen and (max-width: 700px) {
.metadata-properties-title {
margin-bottom: var(--size-4-1);
padding: var(--size-2-3);
display: flex;
justify-content: left;
font-family: var(--ebw-header-font);
background-color: rgba(var(--secondary-accent-4-rgb), 0.1);
&:before {
display: none;
}
&::after {
display: none;
}
}
.markdown-source-view .metadata-container .metadata-add-button {
margin-top: revert;
padding-left: revert;
position: revert;
font-size: revert;
left: revert;
top: revert;
}
} |
I'm leaning towards B because on mobile, if properties are used:
|
sigrunixia
added a commit
to sigrunixia/Ebullientworks-Obsidian
that referenced
this issue
Aug 7, 2024
By removing it. Closes ebullient#99 Signed-off-by: Sigrunixia <Scholarlysigrun@icloud.com>
ebullient
pushed a commit
that referenced
this issue
Aug 7, 2024
By removing it. Closes #99 Signed-off-by: Sigrunixia <Scholarlysigrun@icloud.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As seen here.
Iphone 11 pro max sized screen.
The text was updated successfully, but these errors were encountered: