Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrieseberg committed Nov 19, 2024
1 parent e10f0dc commit 193106b
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions src/pages/home/_components/FeaturedAppsCarousel.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ h2 {
background: linear-gradient(to right, #fff 0%, transparent 100%);

[data-theme='dark'] & {
background: linear-gradient(to right, var(--ifm-background-color) 0%, transparent 100%);
background: linear-gradient(
to right,
var(--ifm-background-color) 0%,
transparent 100%
);
}
}

Expand All @@ -33,15 +37,19 @@ h2 {
background: linear-gradient(to left, #fff 0%, transparent 100%);

[data-theme='dark'] & {
background: linear-gradient(to left, var(--ifm-background-color) 0%, transparent 100%);
background: linear-gradient(
to left,
var(--ifm-background-color) 0%,
transparent 100%
);
}
}
}

.carouselTrack {
display: flex;
animation: scroll 30s linear infinite;

&:hover {
animation-play-state: paused;
}
Expand All @@ -50,13 +58,13 @@ h2 {
.customerLogo {
flex-shrink: 0;
padding: 0 2rem;

img {
height: 2.5rem;
width: auto;
opacity: 0.7;
transition: opacity 0.3s ease;

&:hover {
opacity: 1;
}
Expand Down

0 comments on commit 193106b

Please sign in to comment.