45 lines
884 B
SCSS
45 lines
884 B
SCSS
![]() |
// <!-- #region auth modal styles -->
|
||
|
// <style lang="scss" scoped>
|
||
|
.custom-auth-modal {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 1050;
|
||
|
// display: none;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
outline: 0;
|
||
|
background-color: rgba(0, 0, 0, 0.2);
|
||
|
|
||
|
.modal-dialog {
|
||
|
max-width: 500px;
|
||
|
margin: 1.75rem auto;
|
||
|
|
||
|
&.modal-dialog-scrollable {
|
||
|
max-height: calc(100% - 3.5rem);
|
||
|
}
|
||
|
|
||
|
&.modal-dialog-centered {
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.modal-content {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
pointer-events: auto;
|
||
|
background-color: #fff;
|
||
|
background-clip: padding-box;
|
||
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
|
border-radius: 1.3rem;
|
||
|
outline: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// </style>
|
||
|
// <!-- #endregion -->
|