Skip to content

Commit 6fbf56c

Browse files
authored
Update Frontend.html
1 parent 523cb92 commit 6fbf56c

File tree

1 file changed

+23
-8
lines changed

1 file changed

+23
-8
lines changed

domains/Frontend.html

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,25 @@
404404
background-color: #377536;
405405
color: white;
406406
border: none;
407-
border-radius: 50%;
408-
width: 60px;
407+
border-radius: 12px;
408+
width: auto;
409+
min-width: 60px;
409410
height: 60px;
410-
font-size: 24px;
411+
padding: 0 20px;
412+
font-size: 16px;
413+
font-weight: 600;
411414
box-shadow: 0 4px 12px rgba(55, 117, 54, 0.4);
412415
cursor: pointer;
413-
z-index: 9999;
416+
z-index: 900;
414417
transition: all 0.3s;
418+
display: none;
419+
align-items: center;
420+
justify-content: center;
421+
gap: 8px;
422+
}
423+
424+
.mobile-content-toggle i {
425+
font-size: 20px;
415426
}
416427

417428
.mobile-content-toggle:active {
@@ -432,7 +443,7 @@
432443
width: 100%;
433444
height: 100%;
434445
background-color: rgba(0, 0, 0, 0.5);
435-
z-index: 1001;
446+
z-index: 998;
436447
opacity: 0;
437448
transition: opacity 0.3s;
438449
}
@@ -450,7 +461,7 @@
450461
width: 100%;
451462
height: 50%;
452463
background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
453-
z-index: 1002;
464+
z-index: 999;
454465
transform: translateY(-100%);
455466
transition: transform 0.3s ease-out;
456467
overflow-y: auto;
@@ -516,7 +527,10 @@
516527
display: none;
517528
}
518529

519-
.mobile-content-toggle,
530+
.mobile-content-toggle {
531+
display: flex !important;
532+
}
533+
520534
.mobile-sidebar-overlay,
521535
.mobile-sidebar {
522536
display: block;
@@ -563,7 +577,8 @@
563577

564578
<!-- Mobile Content Toggle Button -->
565579
<button class="mobile-content-toggle" id="mobileContentToggle" aria-label="Toggle content menu">
566-
<i class="fas fa-list"></i>
580+
<i class="fas fa-list-ul"></i>
581+
<span>Content</span>
567582
</button>
568583

569584
<!-- Mobile Sidebar Overlay -->

0 commit comments

Comments
 (0)