#<Select /> broken on Firefox unless it has searchable={true} prop
2 messages ยท Page 1 of 1 (latest)
Fixable by overwriting this change for now
/* Fixes odd Firefox behavior in Select โ https://github.com/mantinedev/mantine/issues/7476 */
.mantine-Input-input {
@supports (-moz-appearance: none) {
&[readonly][aria-haspopup] {
pointer-events: all !important;
}
}
}