Skip to content

Commit 2940cc1

Browse files
committed
Add a divider between logos
1 parent 9e47170 commit 2940cc1

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

src/components/index-page/trusted-by/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export function TrustedBy() {
102102
</div>
103103
<div
104104
className={clsx(
105-
"mt-6 flex flex-wrap justify-center bg-neu-400 md:my-12 xl:my-16 xl:grid xl:grid-cols-5 xl:gap-px",
105+
"mt-6 grid grid-cols-2 justify-center gap-px md:my-12 xl:my-16 xl:grid-cols-5",
106106
styles.logos,
107107
)}
108108
>
Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1-
.logos > a {
2-
transition: background-color 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
1+
.logos {
2+
background-image: radial-gradient(
3+
ellipse at 50% 50%,
4+
hsl(var(--color-neu-600)) 0%,
5+
transparent 75%
6+
);
7+
background-size: 100% 100%;
8+
background-position: center;
9+
background-repeat: no-repeat;
310

4-
& :is(svg, path) {
5-
transition: fill 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
6-
}
11+
& > a {
12+
transition: background-color 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
13+
14+
& :is(svg, path) {
15+
transition: fill 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
16+
}
717

8-
&:not(:hover) :is(svg, path) {
9-
fill: hsl(var(--color-neu-600));
18+
&:not(:hover) :is(svg, path) {
19+
fill: hsl(var(--color-neu-600));
20+
}
1021
}
1122
}

0 commit comments

Comments
 (0)