Skip to content

Commit d60eefe

Browse files
committed
remove full height to allow background to cover container
1 parent 32616b1 commit d60eefe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/frontend/components/Standings/Relative.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const Relative = () => {
7373

7474
return (
7575
<div
76-
className="w-full h-full bg-slate-800/[var(--bg-opacity)] rounded-sm p-2"
76+
className="w-full bg-slate-800/[var(--bg-opacity)] rounded-sm p-2"
7777
style={{
7878
['--bg-opacity' as string]: `${config?.background?.opacity ?? 0}%`,
7979
}}

src/frontend/components/Standings/Standings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const Standings = () => {
1919
const settings = useStandingsSettings();
2020
return (
2121
<div
22-
className={`w-full h-full bg-slate-800/[var(--bg-opacity)] rounded-sm p-2 text-white overflow-hidden`}
22+
className={`w-full bg-slate-800/[var(--bg-opacity)] rounded-sm p-2 text-white overflow-hidden`}
2323
style={{
2424
['--bg-opacity' as string]: `${settings?.background?.opacity ?? 0}%`,
2525
}}

0 commit comments

Comments
 (0)