[frontend/components] Fix auto minimum width of note container

This commit is contained in:
Lilian 2024-11-07 01:00:56 +01:00
parent 2eb080afe5
commit 938b010aed
No known key found for this signature in database
3 changed files with 5 additions and 1 deletions

View file

@ -1,9 +1,11 @@
.note-parent, .note {
width: 100%;
min-width: 0;
}
.note {
padding-bottom: 1rem;
min-width: 0;
}
.note-indent {

View file

@ -19,6 +19,7 @@
.note {
width: 100%;
min-width: 0;
}
.root-note {

View file

@ -32,4 +32,5 @@
.note {
width: 100%;
padding-bottom: 1rem;
}
min-width: 0;
}