1 parent bae13ad commit a016076Copy full SHA for a016076
1 file changed
frontend/src/index.css
@@ -20,15 +20,26 @@ body {
20
max-width: 1400px;
21
margin: 0 auto;
22
padding: 2rem;
23
+ padding-top: 6rem;
24
+ /* Add space for fixed header */
25
}
26
27
.site-header {
28
display: flex;
29
justify-content: space-between;
30
align-items: center;
31
margin-bottom: 2rem;
- padding-bottom: 1rem;
32
+ padding: 1rem 2rem;
33
border-bottom: 1px solid #333;
34
+ position: fixed;
35
+ top: 0;
36
+ left: 0;
37
+ right: 0;
38
+ background-color: rgba(10, 10, 10, 0.85);
39
+ /* Semi-transparent background */
40
+ backdrop-filter: blur(10px);
41
+ /* Glassmorphism blur */
42
+ z-index: 1000;
43
44
45
.cart-icon {
0 commit comments