This repository has been archived by the owner on Jun 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: improve the presentation of statistics
- Loading branch information
1 parent
7abca04
commit 3632408
Showing
2 changed files
with
70 additions
and
72 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
22 changes: 20 additions & 2 deletions
22
...pp/src/app/modules/statistics/components/today-statistics/today-statistics.component.scss
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 |
---|---|---|
@@ -1,3 +1,21 @@ | ||
.statistics-info { | ||
color: var(--arsenic); | ||
.TodayStatistics__card__content { | ||
color: rgba(0, 0, 0, 0.57) | ||
} | ||
|
||
.TodayStatistics__container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: space-between; | ||
flex-wrap: wrap; | ||
} | ||
|
||
@media (min-width: 960px) { | ||
.TodayStatistics__container { | ||
flex-direction: row; | ||
} | ||
} | ||
|
||
.TodayStatistics__card { | ||
border: 1px solid rgba(0, 0, 0, 0.12); | ||
} |