mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-14 04:46:34 +03:00
22 lines
294 B
SCSS
22 lines
294 B
SCSS
:host {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: block;
|
|
|
|
height: 5px;
|
|
z-index: 100;
|
|
}
|
|
|
|
span {
|
|
display: block;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: attr(progress percentage);
|
|
background-color: #5f7fc3;
|
|
transition: right 0.2s linear;
|
|
}
|