Bug fixing

This commit is contained in:
anoshenko 2024-04-24 13:49:16 +03:00
parent 9ac68ac0c9
commit 8bfa759230
2 changed files with 4 additions and 2 deletions

View File

@ -57,9 +57,10 @@ button {
textarea {
margin: 2px;
padding: 1px;
padding: 4px;
overflow: auto;
font-size: inherit;
resize: none;
}
ul:focus {

View File

@ -666,7 +666,8 @@ const (
// Resize is the constant for the "resize" property tag.
// The "resize" int property sets whether an element is resizable, and if so, in which directions.
// Valid values are "none" (0), "both" (1), horizontal (2), and "vertical" (3)
// Valid values are "none" / NoneResize (0), "both" / BothResize (1),
// "horizontal" / HorizontalResize (2), and "vertical" / VerticalResize (3)
Resize = "resize"
// UserSelect is the constant for the "user-select" property tag.