mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-02 03:13:19 +02:00
20 lines
374 B
CSS
20 lines
374 B
CSS
/*
|
|
These are patches or hacks to avoid boostrap interfering with Mui styles
|
|
This file is meant to be removed when removing bootstrap
|
|
*/
|
|
/*
|
|
/* bootstrap modal */
|
|
|
|
.wise-editor .modal {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.modal-backdrop {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(0,0,0,0.5);
|
|
z-index: 1000;
|
|
} |