Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: update ecosystem style #7460

Merged
merged 1 commit into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/docs/src/routes/(ecosystem)/ecosystem.css
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,8 @@
[data-theme='dark'] [alt='Twitter'] {
filter: invert(1);
}

.custom-grid-cols-240px-1fr-tailwind-workaround {
/* temporary workaround .grid-cols-\[240px\,1fr\] is not currently working in tailwind */
grid-template-columns: 240px 1fr;
}
2 changes: 1 addition & 1 deletion packages/docs/src/routes/(ecosystem)/ecosystem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default component$(() => {

return (
<>
<div class="ecosystem lg:grid grid-cols-[240px,1fr] m-auto max-w-screen-xl gap-8">
<div class="ecosystem lg:grid grid-cols-[240px,1fr] m-auto max-w-screen-xl gap-8 custom-grid-cols-240px-1fr-tailwind-workaround">
<EcosystemMenu />
<MobileEcosystemMenu />

Expand Down