|
@@ -22,6 +22,7 @@ |
|
|
--danger-dark: #d65f5f; |
|
|
--danger-dark: #d65f5f; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Confirmation pop up container style |
|
|
.confirmation-popup { |
|
|
.confirmation-popup { |
|
|
position: fixed; |
|
|
position: fixed; |
|
|
left: 80%; |
|
|
left: 80%; |
|
@@ -54,3 +55,48 @@ |
|
|
transition: opacity 0.3s, transform 0.3s; |
|
|
transition: opacity 0.3s, transform 0.3s; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Common styles |
|
|
|
|
|
.page-container { |
|
|
|
|
|
height: 100vh; |
|
|
|
|
|
overflow: auto; |
|
|
|
|
|
padding-bottom: 100px; |
|
|
|
|
|
|
|
|
|
|
|
&.half-bg { |
|
|
|
|
|
&::before { |
|
|
|
|
|
content: ''; |
|
|
|
|
|
position: absolute; |
|
|
|
|
|
left: 0; |
|
|
|
|
|
top: 0; |
|
|
|
|
|
height: 40vh; |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
background-color: transparent; |
|
|
|
|
|
border-bottom-left-radius: 30px; |
|
|
|
|
|
border-bottom-right-radius: 30px; |
|
|
|
|
|
pointer-events: none; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&[color="black"] { |
|
|
|
|
|
&::before { |
|
|
|
|
|
background-color: var(--black); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&[color="ash-black"] { |
|
|
|
|
|
&::before { |
|
|
|
|
|
background-color: var(--ash-black); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&.full-bg { |
|
|
|
|
|
&[color="black"] { |
|
|
|
|
|
background-color: var(--black); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&[color="ash-black"] { |
|
|
|
|
|
background-color: var(--ash-black); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |