Skip to content

Commit

Permalink
add cursor:pointer in counter examples (#1646)
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Carniato <ryansolid@gmail.com>
  • Loading branch information
ricardo-devis-agullo and ryansolid authored Oct 10, 2024
1 parent bd8d7f5 commit a5c279f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/bare/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ p {
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}

.increment:focus {
Expand Down
1 change: 1 addition & 0 deletions examples/basic/src/components/Counter.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}

.increment:focus {
Expand Down
1 change: 1 addition & 0 deletions examples/experiments/src/components/Counter.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}

.increment:focus {
Expand Down
1 change: 1 addition & 0 deletions examples/with-mdx/src/components/Counter.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}

.increment:focus {
Expand Down
1 change: 1 addition & 0 deletions examples/with-solid-styled/src/components/Counter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default function Counter() {
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}
button:focus {
Expand Down
1 change: 1 addition & 0 deletions examples/with-trpc/src/components/Counter.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}

.increment:focus {
Expand Down
1 change: 1 addition & 0 deletions examples/with-vitest/src/components/Counter.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}

.increment:focus {
Expand Down

0 comments on commit a5c279f

Please sign in to comment.