Skip to content

Commit bf77fb3

Browse files
deni-commitsclaude
andcommitted
Make slider labels larger and brighter
Labels: 14px→16px, opacity 0.75→0.85, fontWeight 500 Tick labels: 12px→14px, opacity 0.45→0.6 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e7d3edf commit bf77fb3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

positionierungscheck/src/components/final/FinalSlider.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,23 +175,23 @@ export default function FinalSlider({
175175

176176
{/* Labels */}
177177
<div className="flex justify-between mt-3">
178-
<span style={{ color: 'rgba(255, 255, 255, 0.75)', fontSize: '14px', fontFamily: "'Titillium Web', sans-serif" }}>
178+
<span style={{ color: 'rgba(255, 255, 255, 0.85)', fontSize: '16px', fontWeight: 500, fontFamily: "'Titillium Web', sans-serif" }}>
179179
trifft gar nicht zu
180180
</span>
181-
<span style={{ color: 'rgba(255, 255, 255, 0.75)', fontSize: '14px', fontFamily: "'Titillium Web', sans-serif" }}>
181+
<span style={{ color: 'rgba(255, 255, 255, 0.85)', fontSize: '16px', fontWeight: 500, fontFamily: "'Titillium Web', sans-serif" }}>
182182
trifft voll und ganz zu
183183
</span>
184184
</div>
185185

186186
{/* Tick labels — show 0, 50, 100 */}
187187
<div className="flex justify-between mt-1">
188-
<span style={{ color: 'rgba(255, 255, 255, 0.45)', fontSize: '12px', fontFamily: "'Titillium Web', sans-serif" }}>
188+
<span style={{ color: 'rgba(255, 255, 255, 0.6)', fontSize: '14px', fontFamily: "'Titillium Web', sans-serif" }}>
189189
0%
190190
</span>
191-
<span style={{ color: 'rgba(255, 255, 255, 0.45)', fontSize: '12px', fontFamily: "'Titillium Web', sans-serif" }}>
191+
<span style={{ color: 'rgba(255, 255, 255, 0.6)', fontSize: '14px', fontFamily: "'Titillium Web', sans-serif" }}>
192192
50%
193193
</span>
194-
<span style={{ color: 'rgba(255, 255, 255, 0.45)', fontSize: '12px', fontFamily: "'Titillium Web', sans-serif" }}>
194+
<span style={{ color: 'rgba(255, 255, 255, 0.6)', fontSize: '14px', fontFamily: "'Titillium Web', sans-serif" }}>
195195
100%
196196
</span>
197197
</div>

0 commit comments

Comments
 (0)