Skip to content

Commit 3a7d872

Browse files
committed
feat: improve heading styles and enhance protected data item count display
1 parent 884ef5c commit 3a7d872

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/index.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ body {
146146
@apply bg-background text-foreground;
147147
}
148148

149-
h1 {
149+
h1,
150+
h2 {
150151
@apply font-anybody text-2xl font-extrabold;
151152
}
152153

src/views/profile/protectedDataList.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,15 @@ export default function ProtectedDataList() {
143143
</div>
144144
<div className="space-y-6">
145145
<div className="space-y-2">
146-
<h2>
146+
<h2 className="text-xl font-extrabold">
147147
My protected data{' '}
148-
<span>
148+
<span className="text-lg font-normal">
149+
(
149150
{pluralize(
150151
protectedDataList ? protectedDataList.length : 0,
151152
'item'
152153
)}
154+
)
153155
</span>
154156
</h2>
155157
<p>Remove Confidentially</p>

0 commit comments

Comments
 (0)