Skip to content

Commit

Permalink
[refactor] Remove unused parentheses in CSS code (#6607)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiankistner authored Aug 6, 2024
1 parent 9a1e311 commit aed4037
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
height: var(--slider-size);
width: var(--slider-size);
border-radius: 1000px;
transform: translateX((calc(var(--slider-size) / -2)));
transform: translateX(calc(var(--slider-size) / -2));
background-color: var(--mantine-color-white);
pointer-events: none;

Expand Down

0 comments on commit aed4037

Please sign in to comment.