Add styling for dashboard tile

This commit is contained in:
Ethan Girouard 2024-05-11 13:08:32 -04:00
parent ec43ab472d
commit b1cc0f156c
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
3 changed files with 26 additions and 0 deletions

23
style/dashboard_tile.scss Normal file
View File

@ -0,0 +1,23 @@
.dashboard-tile {
img {
width: $dashboard-tile-size;
height: $dashboard-tile-size;
border-radius: 7px;
margin-right: 20px;
}
p.dashboard-tile-title {
font-size: 16px;
font-weight: bold;
margin: 0;
padding: 0;
}
p.dashboard-tile-description {
font-size: 12px;
margin: 0;
padding: 0;
}
margin-right: 10px;
}

View File

@ -8,6 +8,7 @@
@import 'home.scss';
@import 'search.scss';
@import 'personal.scss';
@import 'dashboard_tile.scss';
body {
font-family: sans-serif;

View File

@ -14,3 +14,5 @@ $queue-background-color: $play-bar-background-color;
$auth-inputs: #796dd4;
$auth-containers: white;
$dashboard-tile-size: 200px;