Created
July 31, 2023 04:50
-
-
Save sharmaabhinav/3016364746cd1026bea063a7609fe240 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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