Fix field content overflowing its container (#1618)

This commit is contained in:
Hikaru Y 2022-01-25 09:35:13 +09:00 committed by GitHub
parent d6aee9a0e2
commit 7501ff7ab5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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);