Remove resize handles from inputs in Firefox (#39274)

This commit is contained in:
diondiondion 2026-06-04 10:20:46 +02:00 committed by GitHub
parent 2713f14447
commit a6ec5ce508
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -557,7 +557,6 @@ code {
display: block;
width: 100%;
font-family: inherit;
resize: vertical;
background: var(--color-bg-secondary);
border: 1px solid var(--color-border-primary);
border-radius: 4px;
@ -584,6 +583,10 @@ code {
}
}
textarea {
resize: vertical;
}
input[type='text'],
input[type='number'],
input[type='email'],