We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884ef5c commit 3a7d872Copy full SHA for 3a7d872
src/index.css
@@ -146,7 +146,8 @@ body {
146
@apply bg-background text-foreground;
147
}
148
149
-h1 {
+h1,
150
+h2 {
151
@apply font-anybody text-2xl font-extrabold;
152
153
src/views/profile/protectedDataList.tsx
@@ -143,13 +143,15 @@ export default function ProtectedDataList() {
143
</div>
144
<div className="space-y-6">
145
<div className="space-y-2">
- <h2>
+ <h2 className="text-xl font-extrabold">
My protected data{' '}
- <span>
+ <span className="text-lg font-normal">
+ (
{pluralize(
protectedDataList ? protectedDataList.length : 0,
'item'
)}
154
+ )
155
</span>
156
</h2>
157
<p>Remove Confidentially</p>
0 commit comments