UX: Improve table modal max width for larger screens (#22)
* UX: Improve modal width for large screens * UX: Ensure smaller screen modal does not cut off content
This commit is contained in:
parent
be968d9158
commit
9528208b8c
|
@ -24,8 +24,13 @@
|
|||
align-items: flex-start;
|
||||
|
||||
.modal-inner-container {
|
||||
--modal-max-width: 90%;
|
||||
width: 100vw;
|
||||
--modal-max-width: $reply-area-max-width;
|
||||
width: $reply-area-max-width;
|
||||
|
||||
@media screen and (max-width: 1200px) {
|
||||
--modal-max-width: 90%;
|
||||
width: 100vw;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
|
|
Loading…
Reference in New Issue