Skip to content

Commit f5423e2

Browse files
nickfrostybeeman
authored andcommitted
refactor: tailwind button
1 parent 5765262 commit f5423e2

File tree

12 files changed

+60
-0
lines changed

12 files changed

+60
-0
lines changed

legacy/legacy-next-tailwind-basic/src/app/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
body {
119119
@apply bg-background text-foreground;
120120
}
121+
122+
button:not(:disabled),
123+
[role='button']:not(:disabled) {
124+
cursor: pointer;
125+
}
121126
}
122127

123128
.wallet-adapter-button-trigger {

legacy/legacy-next-tailwind-counter/src/app/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
body {
119119
@apply bg-background text-foreground;
120120
}
121+
122+
button:not(:disabled),
123+
[role='button']:not(:disabled) {
124+
cursor: pointer;
125+
}
121126
}
122127

123128
.wallet-adapter-button-trigger {

legacy/legacy-next-tailwind/src/app/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
body {
119119
@apply bg-background text-foreground;
120120
}
121+
122+
button:not(:disabled),
123+
[role='button']:not(:disabled) {
124+
cursor: pointer;
125+
}
121126
}
122127

123128
.wallet-adapter-button-trigger {

legacy/legacy-react-vite-tailwind-basic/src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
body {
119119
@apply bg-background text-foreground;
120120
}
121+
122+
button:not(:disabled),
123+
[role='button']:not(:disabled) {
124+
cursor: pointer;
125+
}
121126
}
122127

123128
.wallet-adapter-button-trigger {

legacy/legacy-react-vite-tailwind-counter/src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
body {
119119
@apply bg-background text-foreground;
120120
}
121+
122+
button:not(:disabled),
123+
[role='button']:not(:disabled) {
124+
cursor: pointer;
125+
}
121126
}
122127

123128
.wallet-adapter-button-trigger {

legacy/legacy-react-vite-tailwind/src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
body {
119119
@apply bg-background text-foreground;
120120
}
121+
122+
button:not(:disabled),
123+
[role='button']:not(:disabled) {
124+
cursor: pointer;
125+
}
121126
}
122127

123128
.wallet-adapter-button-trigger {

templates/template-next-tailwind-basic/src/app/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@
119119
body {
120120
@apply bg-background text-foreground;
121121
}
122+
123+
button:not(:disabled),
124+
[role='button']:not(:disabled) {
125+
cursor: pointer;
126+
}
122127
}
123128

124129
.wallet-adapter-button-trigger {

templates/template-next-tailwind-counter/src/app/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@
119119
body {
120120
@apply bg-background text-foreground;
121121
}
122+
123+
button:not(:disabled),
124+
[role='button']:not(:disabled) {
125+
cursor: pointer;
126+
}
122127
}
123128

124129
.wallet-adapter-button-trigger {

templates/template-next-tailwind/src/app/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@
119119
body {
120120
@apply bg-background text-foreground;
121121
}
122+
123+
button:not(:disabled),
124+
[role='button']:not(:disabled) {
125+
cursor: pointer;
126+
}
122127
}
123128

124129
.wallet-adapter-button-trigger {

templates/template-react-vite-tailwind-basic/src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@
119119
body {
120120
@apply bg-background text-foreground;
121121
}
122+
123+
button:not(:disabled),
124+
[role='button']:not(:disabled) {
125+
cursor: pointer;
126+
}
122127
}
123128

124129
.wallet-adapter-button-trigger {

0 commit comments

Comments
 (0)