Skip to content

Commit c132dc3

Browse files
feat: refactor to Tailwind
1 parent 5715cde commit c132dc3

10 files changed

+97
-60
lines changed

index.html

+6
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,11 @@
4141
async
4242
defer
4343
></script>
44+
<style>
45+
.github-corner > svg {
46+
color: #151513;
47+
fill: #fafafa;
48+
}
49+
</style>
4450
</body>
4551
</html>

package-lock.json

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"react": "19.0.0",
3939
"react-dom": "19.0.0",
4040
"tailwindcss": "3.4.17",
41+
"tw-elements": "2.0.0",
4142
"typescript": "5.7.2",
4243
"vite": "6.0.5",
4344
"zustand": "5.0.2"

postcss.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

src/components/App.tsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
1+
import { useEffect } from 'react';
2+
import { initTWE, Ripple } from 'tw-elements';
3+
14
import Button from '../components/Button';
25
import Counter from '../components/Counter';
36
import Cursor from '../components/Cursor';
47
import Generators from '../components/Generators';
58
import Message from '../components/Message';
69

710
export default function App() {
11+
useEffect(() => {
12+
initTWE({ Ripple });
13+
}, []);
14+
815
return (
916
<main>
1017
<Message />
1118

12-
<section>
19+
<section className="py-6 px-9">
1320
<h1>Button Clicker</h1>
1421
<Counter />
1522
<Button />

src/components/Button.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ export default function Button() {
1414

1515
return (
1616
<p>
17-
<button title="Click Button" onClick={handleClick}>
17+
<button
18+
data-twe-ripple-color="light"
19+
data-twe-ripple-init
20+
onClick={handleClick}
21+
title="Click Button"
22+
type="button"
23+
>
1824
Click Button
1925
</button>
2026
</p>

src/components/Generators.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ export default function Generators() {
2222
<>
2323
{generators.map((generator) => (
2424
<tr id={generator.id} key={generator.id}>
25-
<td>
25+
<td className="flex items-center">
2626
<button
27+
data-twe-ripple-color="light"
28+
data-twe-ripple-init
2729
disabled={clickStore.current < generator.cost.next}
2830
title={generator.label}
2931
onClick={() => {
@@ -37,8 +39,9 @@ export default function Generators() {
3739
}}
3840
>
3941
{generator.label}
40-
</button>{' '}
41-
{generator.owned.toLocaleString()}
42+
</button>
43+
44+
<span className="ml-2">{generator.owned.toLocaleString()}</span>
4245
</td>
4346

4447
<td>{generator.cost.next.toLocaleString()}</td>

src/components/Message.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@ import { useMessageStore } from '../state';
33
export default function Message() {
44
const { message } = useMessageStore();
55

6-
return <header>{message}</header>;
6+
return (
7+
<header className="py-7 px-9 font-mono bg-neutral-900 text-gray-100">
8+
{message}
9+
</header>
10+
);
711
}

src/style.css

+38-52
Original file line numberDiff line numberDiff line change
@@ -2,56 +2,42 @@
22
@tailwind components;
33
@tailwind utilities;
44

5-
html,
6-
body {
7-
border: 0;
8-
font:
9-
14px 'Lucida Grande',
10-
Helvetica,
11-
Arial,
12-
sans-serif;
13-
margin: 0;
14-
padding: 0;
15-
}
16-
17-
header,
18-
section {
19-
padding: 24px 36px;
20-
}
21-
22-
main {
23-
display: block;
24-
}
25-
26-
header {
27-
background: #111;
28-
color: #eee;
29-
font-family: Consolas, monospace;
30-
}
31-
32-
table {
33-
border-collapse: collapse;
34-
}
35-
36-
/* zebra stripes */
37-
tr:nth-child(even) {
38-
background: #eee;
39-
}
40-
41-
th,
42-
td {
43-
border: 1px solid #ddd;
44-
padding: 8px;
45-
}
46-
47-
td:first-child {
48-
text-align: left;
49-
}
50-
51-
/* github-corners */
52-
.github-corner > svg {
53-
color: #151513 !important;
54-
fill: #fafafa !important;
55-
height: 64px;
56-
width: 64px;
5+
@layer base {
6+
h1 {
7+
@apply text-2xl font-bold;
8+
}
9+
10+
p {
11+
@apply my-3.5;
12+
}
13+
14+
button {
15+
@apply rounded bg-neutral-800 px-6 pb-2 pt-2.5 text-xs font-medium uppercase leading-normal text-neutral-50 shadow-dark-3 transition duration-150 ease-in-out dark:shadow-black/30;
16+
}
17+
18+
button:hover {
19+
@apply hover:bg-neutral-700 hover:shadow-dark-2 dark:hover:shadow-dark-strong;
20+
}
21+
22+
button:active {
23+
@apply active:bg-neutral-900 active:shadow-dark-2 dark:active:shadow-dark-strong;
24+
}
25+
26+
button:focus {
27+
@apply focus:bg-neutral-700 focus:shadow-dark-2 focus:outline-none focus:ring-0 dark:focus:shadow-dark-strong;
28+
}
29+
30+
button:disabled {
31+
@apply opacity-30 disabled:pointer-events-none select-none;
32+
}
33+
34+
/* zebra stripes */
35+
tr:nth-child(even) {
36+
@apply bg-neutral-100;
37+
}
38+
39+
th,
40+
td {
41+
@apply border border-neutral-200 p-2;
42+
}
5743
}

tailwind.config.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
import type { Config } from 'tailwindcss';
22

33
const config: Config = {
4-
content: ['./index.html', './src/**/*.{js,ts,mjs,mts,jsx,tsx}'],
5-
plugins: [],
4+
content: [
5+
'./index.html',
6+
'./src/**/*.{js,ts,mjs,mts,jsx,tsx}',
7+
'./node_modules/tw-elements/js/**/*.js',
8+
],
9+
// eslint-disable-next-line @typescript-eslint/no-require-imports
10+
plugins: [require('tw-elements/plugin.cjs')],
611
theme: {
12+
fontFamily: {
13+
sans: '"Lucida Grande", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"',
14+
serif: 'ui-serif, Georgia, Cambria, "Times New Roman", Times, serif',
15+
mono: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
16+
},
717
extend: {},
818
},
919
};

0 commit comments

Comments
 (0)