mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Fix field content overflowing its container (#1618)
This commit is contained in:
parent
d6aee9a0e2
commit
7501ff7ab5
2 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
display: block;
|
||||
padding: 6px;
|
||||
overflow: auto;
|
||||
overflow-wrap: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
/* fallback for iOS */
|
||||
word-break: break-word;
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
|
|
|
@ -104,8 +104,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
border-radius: 5px;
|
||||
border: 1px solid var(--border-color);
|
||||
|
||||
min-width: 0;
|
||||
|
||||
&:focus-within {
|
||||
--border-color: var(--focus-border);
|
||||
|
||||
|
|
Loading…
Reference in a new issue