audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(portal): audio buttons inherit global font (#1326)

the "version history" button rendered in the browser default sans-serif
instead of the user's selected global font (mono by default). <button>
elements don't inherit font-family by default, so an explicit
`font-family: inherit` is required. matches the pattern already used
in login, tag, and track routes.

also added to .audio-replace-btn (same root cause; not visible in the
current screenshot because it only appears after a file is selected)
and .audio-upload-btn (it's on a <label> so inherits implicitly, but
adding for consistency and to protect against future markup changes).

Co-authored-by: Claude Opus 4 (1M context) <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4 (1M context)
and committed by
GitHub
eac426d6 d38aa796

+4 -1
+3
frontend/src/routes/portal/+page.svelte
··· 2848 2848 border: 1px solid var(--accent); 2849 2849 border-radius: var(--radius-full); 2850 2850 color: var(--accent); 2851 + font-family: inherit; 2851 2852 font-size: var(--text-sm); 2852 2853 font-weight: 500; 2853 2854 cursor: pointer; ··· 2869 2870 border: 1px solid var(--accent); 2870 2871 border-radius: var(--radius-full); 2871 2872 color: var(--bg); 2873 + font-family: inherit; 2872 2874 font-size: var(--text-sm); 2873 2875 font-weight: 600; 2874 2876 cursor: pointer; ··· 2888 2890 border: 1px solid var(--border-default); 2889 2891 border-radius: var(--radius-full); 2890 2892 color: var(--text-secondary); 2893 + font-family: inherit; 2891 2894 font-size: var(--text-xs); 2892 2895 font-weight: 500; 2893 2896 cursor: pointer;
+1 -1
loq.toml
··· 156 156 157 157 [[rules]] 158 158 path = "frontend/src/routes/portal/+page.svelte" 159 - max_lines = 3878 159 + max_lines = 3881 160 160 161 161 [[rules]] 162 162 path = "frontend/src/routes/settings/+page.svelte"