File size: 907 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
.plan-storage {
display: flex;
color: inherit;
&:hover,
&:visited {
color: inherit;
}
}
.plan-storage__bar {
align-self: center; // flex-item behavior (parent element: .plans-storage)
display: flex; // flex-container bahavior
flex-flow: row wrap;
justify-content: space-between;
line-height: 12px;
width: 100%;
}
.plan-storage__storage-label,
.plan-storage__storage-link {
font-size: $font-body-extra-small;
line-height: 1;
margin-top: 6px;
}
.plan-storage__storage-label {
color: var(--color-neutral-70);
font-weight: 600;
}
.plan-storage__storage-link {
margin-left: 12px;
text-decoration: none;
}
.plan-storage__bar .progress-bar__progress {
background-color: var(--color-success);
}
.plan-storage__bar.is-warn .progress-bar__progress {
background-color: var(--color-warning);
}
.plan-storage__bar.is-alert .progress-bar__progress {
background-color: var(--color-error);
}
|