1
0

fix: move .progress styles together as close as possible

This commit is contained in:
Dominik Pschenitschni
2021-10-18 14:33:38 +02:00
parent 986130a0ac
commit 6ba974f9fa
2 changed files with 31 additions and 16 deletions

View File

@ -42,12 +42,26 @@ h6 {
}
}
// FIXME: create <ProgressBar> component. used in
// - attachments.vue
// - kanban-card.vue
// - singleTaskInList.vue
.progress {
border-radius: $radius-large;
width: 50px;
margin: 0 0.5rem 0 0;
flex: 3 1 auto;
&::-moz-progress-bar, &::-webkit-progress-value {
&::-moz-progress-bar,
&::-webkit-progress-value {
background: $grey-500;
}
@media screen and (max-width: $tablet) {
margin: 0.5rem 0 0 0;
order: 1;
width: 100%;
}
}
.has-no-border {