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> </Col>
</Row> </Row>
<Row --cols={1}> <Row --cols={1}>
<div id="note-container"> <div class="note-container">
<div <div
id="{field.id}--div" id="{field.id}--div"
bind:innerHTML={field.divValue} 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; width: 0.1em !important;
height: 0.1em !important; height: 0.1em !important;
} }
.note-container {
width: 100%;
}
</style> </style>