|
|
@ -99,7 +99,7 @@ |
|
|
|
.blurred { |
|
|
|
.blurred { |
|
|
|
filter: blur(4px); |
|
|
|
filter: blur(4px); |
|
|
|
pointer-events: none; |
|
|
|
pointer-events: none; |
|
|
|
user-select: none; |
|
|
|
user-select: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.error-overlay.non-blurred { |
|
|
|
.error-overlay.non-blurred { |
|
|
@ -117,14 +117,13 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Add this to your existing CSS file */ |
|
|
|
|
|
|
|
.error { |
|
|
|
.error { |
|
|
|
border: 1px solid red !important; |
|
|
|
border: 1px solid red !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.active-container { |
|
|
|
.active-container { |
|
|
|
position: relative; |
|
|
|
position: relative; |
|
|
|
border-radius: 5px; |
|
|
|
border-radius: 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.active-container::before { |
|
|
|
.active-container::before { |
|
|
@ -139,3 +138,13 @@ |
|
|
|
pointer-events: none; |
|
|
|
pointer-events: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.center-spin { |
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes spin { |
|
|
|
|
|
|
|
0% { transform: rotate(0deg); } |
|
|
|
|
|
|
|
100% { transform: rotate(360deg); } |
|
|
|
|
|
|
|
} |
|
|
|