.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); }