mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
13 lines
212 B
SCSS
13 lines
212 B
SCSS
|
|
.progress-bar {
|
||
|
|
background-color: $success-light;
|
||
|
|
height: 10px;
|
||
|
|
overflow: hidden;
|
||
|
|
|
||
|
|
div {
|
||
|
|
background-color: $success;
|
||
|
|
height: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
transition: width 300ms ease-in;
|
||
|
|
}
|
||
|
|
}
|