Fix header/extra fields being collapsed on mobile

+ use a class, since this element is repeated
This commit is contained in:
Damien Elmes 2024-09-25 19:50:05 +10:00
parent a4002783a5
commit 221d995180

View file

@ -40,7 +40,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
</Col>
</Row>
<Row --cols={1}>
<div id="note-container">
<div class="note-container">
<div
id="{field.id}--div"
bind:innerHTML={field.divValue}
@ -97,4 +97,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
width: 0.1em !important;
height: 0.1em !important;
}
.note-container {
width: 100%;
}
</style>