This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve Admin dashboard user interface (#31)
* Add new message functionality * Address pull request review comments --------- Co-authored-by: Afrar Malakooth <mmafrar@gmail.com>
- Loading branch information
Showing
4 changed files
with
131 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
.dashboard-container { | ||
padding: 20px; | ||
background-color: #f5f5f5; | ||
} | ||
|
||
.dashboard-header { | ||
margin-bottom: 20px; | ||
} | ||
|
||
.dashboard-stats { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.stat-block { | ||
background: white; | ||
border-radius: 8px; | ||
padding: 20px; | ||
text-align: center; | ||
flex: 1; | ||
margin: 0 10px; | ||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.stat-block h4 { | ||
margin-bottom: 10px; | ||
font-size: 16px; | ||
color: #333; | ||
} | ||
|
||
.stat-block p { | ||
font-size: 24px; | ||
color: #333; | ||
} | ||
|
||
.dashboard-section { | ||
background: white; | ||
border-radius: 8px; | ||
padding: 20px; | ||
margin-bottom: 20px; | ||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.dashboard-section h4 { | ||
margin-bottom: 10px; | ||
font-size: 18px; | ||
color: #333; | ||
} | ||
|
||
#popularItems { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
#popularItems li { | ||
margin-bottom: 5px; | ||
} | ||
|
||
.chart-container { | ||
position: relative; | ||
height: 600px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters