Change how modal is positioned.

This commit is contained in:
bmauger 2022-05-20 17:05:21 -04:00
parent 7125ec0fed
commit 9d461ecca3

View file

@ -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;
}