Skip to content

Commit

Permalink
minor bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Soumik committed Aug 4, 2024
1 parent 6dbc13b commit c042780
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function getquote(data,datapercentage){


slider.addEventListener('input',function(){
req_percentage=this.value
req_percentage=parseInt(this.value)
slider_text.innerHTML=req_percentage
for(let i=0;i<list.childElementCount;i++){
const card=list.children[i]
Expand Down
8 changes: 4 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -239,14 +239,14 @@ h1 {
.perslider .slectedval{
color: white;
padding: 10px;
width: 40px;
height: 40px;
width: 42px;
height: 42px;
margin: 8px;
display: inline;
border: 2px solid red;
padding-left:2% ;
padding-left:7px ;
font-size: 14px;

border: 3px solid skyblue;
}
.perslider input{
margin: auto;
Expand Down

0 comments on commit c042780

Please sign in to comment.