We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdb18b commit 0b2971fCopy full SHA for 0b2971f
packages/docs/src/routes/(ecosystem)/ecosystem.css
@@ -252,3 +252,8 @@
252
[data-theme='dark'] [alt='Twitter'] {
253
filter: invert(1);
254
}
255
+
256
+.custom-grid-cols-240px-1fr-tailwind-workaround {
257
+ /* temporary workaround .grid-cols-\[240px\,1fr\] is not currently working in tailwind */
258
+ grid-template-columns: 240px 1fr;
259
+}
packages/docs/src/routes/(ecosystem)/ecosystem/index.tsx
@@ -23,7 +23,7 @@ export default component$(() => {
23
24
return (
25
<>
26
- <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">
27
<EcosystemMenu />
28
<MobileEcosystemMenu />
29
0 commit comments