Skip to content

Instantly share code, notes, and snippets.

@sharmaabhinav
Created July 31, 2023 04:50
Show Gist options
  • Save sharmaabhinav/3016364746cd1026bea063a7609fe240 to your computer and use it in GitHub Desktop.
Save sharmaabhinav/3016364746cd1026bea063a7609fe240 to your computer and use it in GitHub Desktop.
body {
font-family: sans-serif;
}
.progress-container {
background-color: rgb(233, 236, 239);
border: 1px solid #c5c5c5;
border-radius: 8px;
height: 20px;
overflow-x: hidden;
margin-bottom: 20px;
}
.progress {
background-color: #0d6efd;
overflow-x: hidden;
height: 100%;
transition: transform 2s linear;
transform: scaleX(0);
transform-origin: left;
}
.progress-fill {
transform: scaleX(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment