Fix max-width of clipboard textarea

It should not be able to "eat" its parent-panel's padding. By setting
box-sizing: border-box we can prevent this.
This commit is contained in:
Samuel Mannehed 2022-10-28 16:04:45 +02:00
parent 6b2357061e
commit f0fea1fccd
1 changed files with 2 additions and 0 deletions

View File

@ -572,6 +572,8 @@ html {
}
#noVNC_clipboard_text {
width: 500px;
box-sizing: border-box;
max-width: 100%;
}