style: make reading progress bar thinner in compact cards

- Reduce reading progress bar height from 2px to 1px
- Creates a more subtle, minimal progress indicator for compact bookmarks
This commit is contained in:
Gigi
2025-10-19 22:49:46 +02:00
parent 3619cd2585
commit dfdc5d0946

View File

@@ -77,7 +77,7 @@ export const CompactView: React.FC<CompactViewProps> = ({
{readingProgress !== undefined && readingProgress > 0 && (
<div
style={{
height: '2px',
height: '1px',
width: '100%',
background: 'var(--color-border)',
overflow: 'hidden',