Webapp: Prevent text wrapping in buttons

Prevent wrapping text in `<input type="button">` elements.

Pull Request: https://projects.blender.org/studio/flamenco/pulls/104427
This commit is contained in:
Vivian Leung 2025-08-28 11:27:47 +02:00 committed by Sybren A. Stüvel
parent c573122e01
commit 4c2f4e831f

View File

@ -435,6 +435,7 @@ button, input[type='button'], .btn {
transition-duration: var(--transition-speed); transition-duration: var(--transition-speed);
transition-property: background-color, border-color, color; transition-property: background-color, border-color, color;
user-select: none; user-select: none;
white-space: nowrap;
} }
.btn-lg { .btn-lg {