[frontend/components] Fix auto minimum width of note container
This commit is contained in:
parent
2eb080afe5
commit
938b010aed
3 changed files with 5 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
||||||
.note-parent, .note {
|
.note-parent, .note {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.note {
|
.note {
|
||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.note-indent {
|
.note-indent {
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
.note {
|
.note {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.root-note {
|
.root-note {
|
||||||
|
|
|
@ -32,4 +32,5 @@
|
||||||
.note {
|
.note {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
|
min-width: 0;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue