add file-types bar to statistics widget (#2914)

This commit is contained in:
Tobias Schürg
2023-03-19 21:06:59 -07:00
committed by GitHub
parent 2bdf0aae14
commit 4d26a3d2c6
3 changed files with 110 additions and 18 deletions
@@ -1,7 +1,26 @@
.flex-column {
row-gap: 0.2rem;
.file-type-bar {
display: flex;
height: 10px;
margin-bottom: 10px;
}
.filetypes-list {
max-width: 75%;
.file-type {
height: 100%;
}
.file-type-label {
align-items: center;
float: left;
padding-right: 10px;
}
.file-type-color {
width: 10px;
height: 10px;
border-radius: 50%;
display: inline-block;
margin-right: 5px;
}
.rounded-left {
border-radius: 5px 0 0 5px;
}
.rounded-right {
border-radius: 0 5px 5px 0;
}