UX: firefox fix for shorthand modal width (#22638)
This commit is contained in:
parent
e4deba0075
commit
346ccfd7f5
|
@ -29,6 +29,7 @@
|
||||||
|
|
||||||
.keyboard-shortcuts-modal {
|
.keyboard-shortcuts-modal {
|
||||||
.modal-inner-container {
|
.modal-inner-container {
|
||||||
|
width: 100%;
|
||||||
--modal-max-width: 80vw;
|
--modal-max-width: 80vw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -41,7 +42,7 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
max-height: 85vh !important; // overrides a default modal !important for extra space
|
max-height: 80vh !important; // overrides a default modal !important for extra space
|
||||||
|
|
||||||
.keyboard-shortcuts-help__container {
|
.keyboard-shortcuts-help__container {
|
||||||
columns: auto 20em;
|
columns: auto 20em;
|
||||||
|
|
Loading…
Reference in New Issue