Skip to content

Commit

Permalink
Merge pull request #665 from sriharsha0x1/FilterBoxSize
Browse files Browse the repository at this point in the history
Adjusted Filter Box Sizes for Better UI
  • Loading branch information
Tejashri-Taral authored Oct 28, 2024
2 parents d9a0565 + dcd907b commit 5ab6fa5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -782,8 +782,8 @@ <h2>Subscription Successful!</h2>
tabs.forEach(tab => {

tab.addEventListener('mouseenter', () => {
cursor.style.width = ${tab.offsetWidth}px; // Set width to the current tab's width
cursor.style.left = ${tab.offsetLeft}px; // Move cursor to the current tab's position
cursor.style.width = `${tab.offsetWidth}px`; // Set width to the current tab's width
cursor.style.left = `${tab.offsetLeft}px`; // Move cursor to the current tab's position



Expand Down
2 changes: 1 addition & 1 deletion shopclothing.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

.filters input[type="checkbox"] {
margin-right: 10px;
transform: scale(1.2);
transform: scale(0.5);
cursor: pointer;
}

Expand Down
4 changes: 2 additions & 2 deletions sneaker.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@
}

.filters input[type="checkbox"] {
margin-right: 10px;
transform: scale(1.2);
margin-right: 5px;
transform: scale(0.5);
cursor: pointer;
}

Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ html {

input {
height: 40px;
width: 60%;
width: 20%;
border-radius: 30px;
border: 1px solid lightgray;
}
Expand Down

0 comments on commit 5ab6fa5

Please sign in to comment.