Merge pull request #1342 from Safelite/feature/CSR-1414
Feature/csr 1414
This commit is contained in:
commit
35110d556e
1 changed files with 16 additions and 8 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div v-if="isModalVisible">
|
||||
<div class="dimmer-overlay"></div>
|
||||
<div class="container-fluid modal-loader" :class="layoutClass">
|
||||
<div v-if="notFullScreen" class="dimmer-overlay"></div>
|
||||
<div class="modal-loader" :class="layoutClass">
|
||||
<div class="row g-2 h-100 d-flex align-items-center">
|
||||
<div class="container-fluid overflow-hidden">
|
||||
<div class="row h-100">
|
||||
|
|
@ -69,7 +69,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
layoutClass() {
|
||||
return this.notFullScreen ? "card-layout" : "full-screen";
|
||||
return this.notFullScreen ? "card-layout" : "full-screen container-fluid";
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
|
|
@ -123,12 +123,20 @@ export default {
|
|||
}
|
||||
|
||||
&.card-layout {
|
||||
height: 186px;
|
||||
width: calc(100% - 3rem);
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
padding: 1rem;
|
||||
border-radius: 0.5rem;
|
||||
position: absolute;
|
||||
top: calc(50% - 93px);
|
||||
left: 1.5rem;
|
||||
|
||||
& .text-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
& .mb-4 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.tagbg {
|
||||
|
|
|
|||
Loading…
Reference in a new issue