Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,28 @@ const config: Config = {
position: "left",
},
{
type: "dropdown",
to: "/dashboard",
html: '<span class="nav-emoji">📊</span> Dashboard',
position: "left",
items: [
{
label: "🏠 Home",
to: "/dashboard",
},
{
label: "💬 Discuss",
to: "/dashboard#discuss",
},
{
label: "🏆 Leaderboard",
to: "/dashboard#leaderboard",
},
{
label: "🎁 Giveaway",
to: "/dashboard/giveaway",
},
],
},
{
to: "/our-sponsors/",
Expand Down
9 changes: 5 additions & 4 deletions src/pages/dashboard/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -671,12 +671,13 @@
display: none;
}

.dashboard-menu-btn {
display: block;
.dashboard-menu-btn,
.dashboard-mobile-menu {
display: none !important;
}

.dashboard-main-content {
padding: 80px 20px 40px;
padding: 24px 20px 40px;
}

.dashboard-home-container {
Expand Down Expand Up @@ -750,7 +751,7 @@

@media (max-width: 768px) {
.dashboard-main-content {
padding: 80px 16px 40px;
padding: 24px 16px 40px;
}

.dashboard-stat-card {
Expand Down
Loading
Loading