Change how modal is positioned.
This commit is contained in:
parent
7125ec0fed
commit
9d461ecca3
1 changed files with 12 additions and 7 deletions
|
|
@ -46,17 +46,22 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
.modal-loader {
|
||||
height: 100%;
|
||||
max-width: 100% !important;//For use with modal only
|
||||
background-color: $gray-100;
|
||||
z-index: 9999;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
z-index: 1055;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
outline: 0;
|
||||
background: $gray-100;
|
||||
p {
|
||||
font-family: Roboto;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue