Skip to content

Commit 5e10ac0

Browse files
committed
Make percent style primary
1 parent 98a1ef7 commit 5e10ac0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

plugins/notion/src/App.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,11 @@ select:not(:disabled) {
322322
color: var(--framer-color-text-tertiary);
323323
}
324324

325+
.progress-bar-percent {
326+
font-weight: 600;
327+
color: var(--framer-color-text);
328+
}
329+
325330
.progress-bar {
326331
height: 3px;
327332
width: 100%;

plugins/notion/src/Progress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function Progress({ current, total }: { current: number; total: number })
77
return (
88
<main>
99
<div className="progress-bar-text">
10-
<span>{progressPercent}%</span>
10+
<span className="progress-bar-percent">{progressPercent}%</span>
1111
<span>
1212
{formattedCurrent} / {formattedTotal}
1313
</span>

0 commit comments

Comments
 (0)