| 12345678910111213141516171819202122232425262728 |
- /* Progress bar styles */
- .progress-bar__header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 5px;
- }
- .progress-bar__label,
- .progress-bar__percentage {
- font-size: 14px;
- font-weight: 600;
- }
- .progress-bar__track {
- width: 100%;
- height: 8px;
- background-color: #e0e0e0;
- border-radius: 50px;
- overflow: hidden;
- }
- .progress-bar__fill {
- height: 100%;
- width: 0%;
- border-radius: 50px;
- transition: width 1s ease-in-out;
- }
|