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