Skip to content

Commit

Permalink
fix(style): removed relative color in pasttracks title background
Browse files Browse the repository at this point in the history
  • Loading branch information
ZOASR committed Jan 29, 2024
1 parent cb0d216 commit 1b88f5a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/PastTracks/PastTracks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ const PastTracks = () => {
background: context.colors?.accent
}}
>
<div
class={styles.pastTracks__title}
style={{
color: context.colors?.secondary,
background: `rgb(from ${context.colors?.primary} r g b / 50%)`
}}
>
Past tracks
</div>
<LoadingSkeleton class="h-[200px]" fallback={<div></div>}>
<div
class={styles.pastTracks__title}
style={{
color: context.colors?.secondary,
background: context.colors?.primary
}}
>
Past tracks
</div>
<For
each={
(context.track as TrackInfo)?.pastTracks?.filter(
Expand Down

0 comments on commit 1b88f5a

Please sign in to comment.