Skip to content

Commit 5cb4b29

Browse files
committed
feat: new apps
1 parent ae9871d commit 5cb4b29

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

src/pages/apps/WordCounterPage.js

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,18 @@ function WordCounterPage() {
6969
</h1>
7070
<hr className="border-gray-700" />
7171
<div className="flex justify-center items-center mt-16">
72-
<div
73-
className="group bg-transparent border rounded-lg shadow-2xl p-6 flex flex-col justify-between relative transform transition-all duration-300 ease-in-out scale-105 overflow-hidden h-full w-full max-w-4xl"
74-
style={cardStyle}
75-
>
76-
<div className="relative z-10 p-1">
72+
<div
73+
className="group bg-transparent border rounded-lg shadow-2xl p-6 flex flex-col justify-between relative transform transition-all duration-300 ease-in-out scale-105 overflow-hidden h-full w-full max-w-4xl"
74+
style={cardStyle}
75+
>
76+
<div
77+
className="absolute top-0 left-0 w-full h-full opacity-10"
78+
style={{
79+
backgroundImage:
80+
'radial-gradient(circle, white 1px, transparent 1px)',
81+
backgroundSize: '10px 10px',
82+
}}
83+
></div> <div className="relative z-10 p-1">
7784
<div className="w-full h-64 resize-y overflow-auto border rounded-md" style={{ borderColor: cardStyle.borderColor }}>
7885
<textarea
7986
className="w-full h-full p-4 bg-gray-900/50 font-mono resize-none border-none focus:ring-0"
@@ -91,7 +98,7 @@ function WordCounterPage() {
9198
<p>Paragraphs: {counts.paragraphs}</p>
9299
</div>
93100
<label
94-
className="flex items-center gap-2 text-lg font-semibold px-4 py-2 rounded-md border transition-colors duration-300 ease-in-out cursor-pointer"
101+
className="flex items-center gap-2 text-lg font-arvo font-normal px-4 py-2 rounded-md border transition-colors duration-300 ease-in-out cursor-pointer"
95102
style={{
96103
backgroundColor: 'rgba(0, 0, 0, 0.2)',
97104
color: cardStyle.color,

0 commit comments

Comments
 (0)