Files
SimUL/Assets/UI/progressBar.uss
2024-09-29 14:42:07 +03:00

15 lines
342 B
Plaintext

.progress-bar-container {
width: 80px;
position: relative;
height: 7px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
overflow: hidden;
}
.progress-bar-fill {
width: 50%;
height: 100%;
background-color: #00FF00;
border-radius: 10px 0 0 10px; /* Rounded corners on the left side */
}