feat: add warning to note options menu if note size is >0.5mb (#851)

This commit is contained in:
Aman Harwara
2022-02-07 20:38:19 +05:30
committed by GitHub
parent 9932c2a177
commit 5605baeb57
11 changed files with 52 additions and 12 deletions

View File

@@ -514,6 +514,11 @@
padding-bottom: 0.625rem;
}
.py-3\.5 {
padding-top: 0.875rem;
padding-bottom: 0.875rem;
}
.py-9 {
padding-top: 2.25rem;
padding-bottom: 2.25rem;
@@ -835,6 +840,10 @@
}
}
.flex-shrink-0 {
flex-shrink: 0;
}
.dimmed {
opacity: .5;
cursor: default;
@@ -844,3 +853,7 @@
.hide-if-last-child:last-child {
display: none;
}
.bg-note-size-warning {
background-color: rgba(235, 173, 0, 0.08);
}