Merge pull request #508 from Safelite/feature/CSR-550

Change how modal is positioned.
This commit is contained in:
bmauger 2022-05-20 17:09:11 -04:00 committed by GitHub
commit d7fa95c9d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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