1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-02-25 17:46:03 +01:00

Fix CSS change in dialog overlays breaking some cases

This commit is contained in:
chylex 2018-06-07 14:09:35 +02:00
parent 75d60a8182
commit 4a9049c7aa

View File

@ -248,17 +248,21 @@ a[data-full-url] {
/* Fix modal dialogs breaking when window size is too small */
/************************************************************/
.ovl:before, .overlay:before {
display: none !important;
}
.ovl, .overlay {
flex-direction: column;
justify-content: center;
}
.ovl[style="display: block;"], .overlay {
.ovl[style="display: block;"] {
display: flex !important;
}
.overlay:before, .ovl:before {
display: none !important;
.overlay {
display: flex;
}
/*******************************************/