Fix progess bar

This commit is contained in:
Angelillo15 2023-10-17 21:51:04 +02:00
parent fae1ac5ae8
commit 6b9dd72815
1 changed files with 1 additions and 2 deletions

View File

@ -11,9 +11,8 @@ const BarFill = styled.div<{ style?: { top?: string } }>`
margin-top: 0 !important;
box-shadow: 0 -2px 10px 2px hsl(9.090909090909092, 98.29787234042554%, 53.92156862745098%);
position: fixed;
z-index: 99999;
top: 3.5rem;
height: 2px;
top: ${(props) => props.style?.top || '3.5rem'};
`;
type Timer = ReturnType<typeof setTimeout>;