Skip to content

Commit b8b6d6b

Browse files
committedMar 5, 2025·
Add shopify, fix up sponsors in light theme
1 parent 7faf05e commit b8b6d6b

File tree

11 files changed

+54
-40
lines changed

11 files changed

+54
-40
lines changed
 
+1-1

Error rendering embedded code

Invalid image source.

‎packages/docs/src/assets/projects/freecodecamp.svg

+15-15

Error rendering embedded code

Invalid image source.

‎packages/docs/src/assets/projects/grafana.svg

+9-9

Error rendering embedded code

Invalid image source.

‎packages/docs/src/assets/projects/guardian.svg

+1-1

Error rendering embedded code

Invalid image source.

+4-4

Error rendering embedded code

Invalid image source.

Error rendering embedded code

Invalid image source.

‎packages/docs/src/assets/projects/sourcegraph.svg

+3-3

Error rendering embedded code

Invalid image source.

‎packages/docs/src/assets/projects/spotify.svg

-3
This file was deleted.

Error rendering embedded code

Invalid image source.

Error rendering embedded code

Invalid image source.

‎packages/docs/src/components/Projects.astro

+12-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import Mocha from '../assets/projects/mocha.svg';
1212
import Nuxt from '../assets/projects/nuxt.svg';
1313
import Prettier from '../assets/projects/prettier.svg';
1414
import Sentry from '../assets/projects/sentry.svg';
15+
import Shopify from '../assets/projects/shopify.svg';
1516
import SourceGraph from '../assets/projects/sourcegraph.svg';
16-
import Spotify from '../assets/projects/spotify.svg';
1717
import Stately from '../assets/projects/stately.svg';
1818
import Storybook from '../assets/projects/storybook.svg';
1919
import Svelte from '../assets/projects/svelte.svg';
@@ -29,7 +29,7 @@ import TypeScriptESLint from '../assets/projects/typescript-eslint.svg';
2929
align-content: center;
3030
align-items: center;
3131
justify-content: center;
32-
gap: 3rem;
32+
gap: 2.8rem;
3333
list-style: none;
3434
padding: 0;
3535
}
@@ -47,13 +47,22 @@ import TypeScriptESLint from '../assets/projects/typescript-eslint.svg';
4747
filter: brightness(0.6) grayscale(100%)
4848
}
4949

50+
[data-theme=light] svg {
51+
opacity: 0.7;
52+
}
53+
5054
.contrast {
5155
opacity: 1;
5256
filter: contrast(1) grayscale(100%)
5357
}
5458

5559
svg:hover,
5660
img:hover {
61+
filter: none;
62+
}
63+
64+
[data-theme=light] svg:hover,
65+
[data-theme=light] img:hover {
5766
opacity: 1;
5867
filter: none;
5968
}
@@ -67,6 +76,7 @@ import TypeScriptESLint from '../assets/projects/typescript-eslint.svg';
6776
<a href="https://github.com/grafana"><Grafana /></a>
6877
<a href="https://github.com/prettier"><Prettier class="contrast" /></a>
6978
<a href="https://github.com/eslint"><ESLint class="contrast" /></a>
79+
<a href="https://github.com/shopify"><Shopify /></a>
7080
<a href="https://github.com/getsentry"><Sentry /></a>
7181
<a href="https://github.com/sveltejs"><Svelte class="contrast" /></a>
7282
<a href="https://github.com/JoshuaKGoldberg/create-typescript-app"><img src={CreateTypeScriptApp.src}/></a>

0 commit comments

Comments
 (0)
Please sign in to comment.