mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Fix header/extra fields being collapsed on mobile
+ use a class, since this element is repeated
This commit is contained in:
parent
a4002783a5
commit
221d995180
1 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue