@@ -138,14 +138,14 @@ export default {
138
138
/* Liquid Glass Effect for AppBar */
139
139
.liquid-glass-app-bar {
140
140
position : relative ;
141
- background : rgba (255 , 255 , 255 , 0.1 ) !important ;
141
+ background : rgba (0 , 0 , 0 , 0.25 ) !important ;
142
142
backdrop-filter : blur (20px ) saturate (180% );
143
143
-webkit-backdrop-filter : blur (20px ) saturate (180% );
144
- border : 1px solid rgba (255 , 255 , 255 , 0.125 );
145
- border-bottom : 1px solid rgba (255 , 255 , 255 , 0.2 );
144
+ border : 1px solid rgba (255 , 255 , 255 , 0.08 );
145
+ border-bottom : 1px solid rgba (255 , 255 , 255 , 0.12 );
146
146
box-shadow :
147
- 0 8px 32px 0 rgba (31 , 38 , 135 , 0.37 ),
148
- inset 0 1px 0 rgba (255 , 255 , 255 , 0.1 );
147
+ 0 8px 32px 0 rgba (0 , 0 , 0 , 0.4 ),
148
+ inset 0 1px 0 rgba (255 , 255 , 255 , 0.05 );
149
149
overflow : hidden ;
150
150
}
151
151
@@ -159,10 +159,9 @@ export default {
159
159
background : linear-gradient (
160
160
90deg ,
161
161
transparent ,
162
- rgba (255 , 255 , 255 , 0.1 ),
162
+ rgba (255 , 255 , 255 , 0.08 ),
163
163
transparent
164
164
);
165
- animation : shimmer 3s infinite ;
166
165
z-index : 1 ;
167
166
}
168
167
@@ -175,24 +174,24 @@ export default {
175
174
bottom : 0 ;
176
175
background : linear-gradient (
177
176
135deg ,
178
- rgba (255 , 255 , 255 , 0.1 ) 0% ,
179
- rgba (255 , 255 , 255 , 0.05 ) 50% ,
180
- rgba (255 , 255 , 255 , 0.1 ) 100%
177
+ rgba (255 , 255 , 255 , 0.08 ) 0% ,
178
+ rgba (255 , 255 , 255 , 0.03 ) 50% ,
179
+ rgba (255 , 255 , 255 , 0.08 ) 100%
181
180
);
182
181
z-index : 0 ;
183
182
}
184
183
185
184
/* Liquid Glass Effect for Footer */
186
185
.liquid-glass-footer {
187
186
position : relative ;
188
- background : rgba (255 , 255 , 255 , 0.1 ) !important ;
187
+ background : rgba (0 , 0 , 0 , 0.25 ) !important ;
189
188
backdrop-filter : blur (20px ) saturate (180% );
190
189
-webkit-backdrop-filter : blur (20px ) saturate (180% );
191
- border : 1px solid rgba (255 , 255 , 255 , 0.125 );
192
- border-top : 1px solid rgba (255 , 255 , 255 , 0.2 );
190
+ border : 1px solid rgba (255 , 255 , 255 , 0.08 );
191
+ border-top : 1px solid rgba (255 , 255 , 255 , 0.12 );
193
192
box-shadow :
194
- 0 -8px 32px 0 rgba (31 , 38 , 135 , 0.37 ),
195
- inset 0 -1px 0 rgba (255 , 255 , 255 , 0.1 );
193
+ 0 -8px 32px 0 rgba (0 , 0 , 0 , 0.4 ),
194
+ inset 0 -1px 0 rgba (255 , 255 , 255 , 0.05 );
196
195
overflow : hidden ;
197
196
}
198
197
@@ -206,10 +205,9 @@ export default {
206
205
background : linear-gradient (
207
206
90deg ,
208
207
transparent ,
209
- rgba (255 , 255 , 255 , 0.1 ),
208
+ rgba (255 , 255 , 255 , 0.08 ),
210
209
transparent
211
210
);
212
- animation : shimmer 3s infinite ;
213
211
z-index : 1 ;
214
212
}
215
213
@@ -222,23 +220,13 @@ export default {
222
220
bottom : 0 ;
223
221
background : linear-gradient (
224
222
135deg ,
225
- rgba (255 , 255 , 255 , 0.1 ) 0% ,
226
- rgba (255 , 255 , 255 , 0.05 ) 50% ,
227
- rgba (255 , 255 , 255 , 0.1 ) 100%
223
+ rgba (255 , 255 , 255 , 0.08 ) 0% ,
224
+ rgba (255 , 255 , 255 , 0.03 ) 50% ,
225
+ rgba (255 , 255 , 255 , 0.08 ) 100%
228
226
);
229
227
z-index : 0 ;
230
228
}
231
229
232
- /* Shimmer Animation */
233
- @keyframes shimmer {
234
- 0% {
235
- left : -100% ;
236
- }
237
- 100% {
238
- left : 100% ;
239
- }
240
- }
241
-
242
230
/* Ensure content stays above the effects */
243
231
.liquid-glass-app-bar > * ,
244
232
.liquid-glass-footer > * {
0 commit comments