\n )\n})',
- height: '200',
+ height: '100',
},
],
banner: [
@@ -302,7 +302,7 @@ export const examples: Record = {
'Use this free example to show a text message for announcement with a CTA link, an icon element and a close button to dismiss the banner. Set a different width by using the max-w-{*} utility classes from Tailwind CSS.',
url: '/examples/[theme-rtl]/banner/03-banner-marketing-cta',
content:
- 'import { component$ } from \'@builder.io/qwik\'\nimport { Banner, Button } from \'flowbite-qwik\'\nimport { IconCloseSolid } from \'flowbite-qwik-icons\'\n\nexport default component$(() => {\n return (\n
\n Build websites even faster with components on top of Tailwind CSS\n
\n
\n
\n Sign up\n \n \n \n
\n
\n \n
\n
\n \n \n \n \n \n \n Loading...\n
\n
\n
\n \n
\n Loading...\n
\n
\n \n \n \n \n \n \n \n Loading...\n
\n
\n \n \n \n \n Loading...\n
\n
\n
\n )\n})',
height: '450',
},
{
@@ -311,7 +311,7 @@ export const examples: Record = {
'This example can be used to encourage your website visitors to sign up to your email newsletter by showing an inline form inside the sticky banner on the top side of your page.',
url: '/examples/[theme-rtl]/banner/04-banner-newsletter-signup',
content:
- 'import { component$, useSignal } from \'@builder.io/qwik\'\nimport { Banner, Button, Input } from \'flowbite-qwik\'\nimport { IconCloseSolid } from \'flowbite-qwik-icons\'\n\nexport default component$(() => {\n const email = useSignal(\'\')\n\n return (\n
\n \n Purple to blue\n \n \n Cyan to blue\n \n \n Green to blue\n \n \n Purple to pink\n \n \n Pink to orange\n \n \n Teal to lime\n \n \n Red to yellow\n \n
\n {(['sm', 'md', 'lg'] as RatingSize[]).map((size) => (\n \n ))}\n
\n )\n})",
- height: '200',
+ height: '150',
},
],
select: [
@@ -1831,7 +1831,7 @@ export const examples: Record = {
'Use this example to show a list of navigation menu items by adding children components inside the component and pass the href prop to set a URL and icon to apply any icons from the flowbite-qwik-icons icon library. You can also add a text label as a badge by using the label prop from Qwik and the labelColor to set the color of the label background.',
url: '/examples/[theme-rtl]/sidebar/01-default',
content:
- 'import { component$ } from \'@builder.io/qwik\'\nimport { Sidebar, useSidebarOpen } from \'flowbite-qwik\'\nimport { IconHomeOutline, IconInboxOutline, IconUserCircleOutline, IconShoppingBagOutline, IconChartBars3FromLeftSolid } from \'flowbite-qwik-icons\'\n\nexport default component$(() => {\n const { setIsOpen } = useSidebarOpen()\n\n return (\n
\n )\n})',
height: '500',
},
{
@@ -1848,7 +1848,7 @@ export const examples: Record = {
description: 'This example can be used to show a call to action button inside the sidebar next to the menu items.',
url: '/examples/[theme-rtl]/sidebar/03-with-cta',
content:
- 'import { component$, useSignal } from \'@builder.io/qwik\'\nimport { Sidebar, Badge, useSidebarOpen } from \'flowbite-qwik\'\nimport {\n IconHomeOutline,\n IconInboxOutline,\n IconUserCircleOutline,\n IconShoppingBagOutline,\n IconFileEditSolid,\n IconAdressBookOutline,\n IconGearSolid,\n IconAtomSolid,\n IconAdjustmentsHorizontalSolid,\n IconChartBars3FromLeftSolid,\n} from \'flowbite-qwik-icons\'\n\nexport default component$(() => {\n const isCtaVisible = useSignal(true)\n const { setIsOpen } = useSidebarOpen()\n\n return (\n
\n )\n})',
height: '500',
},
{
@@ -1856,15 +1856,7 @@ export const examples: Record = {
description: 'Use this example to show a navbar together with a sidebar layout for your web application.',
url: '/examples/[theme-rtl]/sidebar/04-sidebar-with-navbar',
content:
- "import { component$ } from '@builder.io/qwik'\nimport { Sidebar } from 'flowbite-qwik'\nimport { IconHomeOutline, IconInboxOutline, IconUserCircleOutline, IconShoppingBagOutline } from 'flowbite-qwik-icons'\nimport { NavbarPage } from '~/components/NavbarPage/NavbarPage'\n\nexport default component$(() => {\n return (\n <>\n \n\n \n \n Dashboard\n inbox\n Users\n Products\n \n \n >\n )\n})",
- height: '500',
- },
- {
- title: 'With close button',
- description: 'Use this example to show a close button on top of the navbar',
- url: '/examples/[theme-rtl]/sidebar/05-sidebar-with-close-button',
- content:
- 'import { component$ } from \'@builder.io/qwik\'\nimport { Sidebar, useSidebarOpen } from \'flowbite-qwik\'\nimport { IconHomeOutline, IconInboxOutline, IconUserCircleOutline, IconShoppingBagOutline, IconChartBars3FromLeftSolid } from \'flowbite-qwik-icons\'\n\nexport default component$(() => {\n const { setIsOpen } = useSidebarOpen()\n\n return (\n
- As you can see, you can can change the global theme in the header but this component bellow will never be affected as it's listening to
- it's own theme reference.
-
+
The Theme provider is a component that allows you to set a default theme for all of its child components.
+
{import.meta.env.PROD && (
diff --git a/apps/web/src/routes/examples/[theme-rtl]/avatar/11-avatar-override-image/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/avatar/11-avatar-override-image/index.tsx
index 06e35721..cecd7596 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/avatar/11-avatar-override-image/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/avatar/11-avatar-override-image/index.tsx
@@ -1,7 +1,7 @@
/**
* title: Override image element
* description: You can override the default image element by passing the img prop to the component. This is useful if you want to use a different image element like
- * height: 200
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/01-default-badge/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/01-default-badge/index.tsx
index f4b23831..771ddb0c 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/01-default-badge/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/01-default-badge/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Default Badge
* description: Use the following badge elements to indicate counts or labels inside or outside components.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/02-props-bordered/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/02-props-bordered/index.tsx
index 44aa427d..fdc99d98 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/02-props-bordered/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/02-props-bordered/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Bordered badge
* description: This example can be used to add a border accent to the badge component.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/03-props-pills/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/03-props-pills/index.tsx
index d57011e2..b7cb644b 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/03-props-pills/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/03-props-pills/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Pills badge
* description: Use this example to make the corners even more rounded like pills for the badge component.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/04-as-link/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/04-as-link/index.tsx
index 1a4db2e9..e0bf3f5e 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/04-as-link/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/04-as-link/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Badges as links
* description: You can also use badges as anchor elements to link to another page. Prop – href
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/05-props-size/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/05-props-size/index.tsx
index 35a7fec4..d71e4021 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/05-props-size/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/05-props-size/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Large badge
* description: Use size prop to change the size of the badge component.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/06-with-icon/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/06-with-icon/index.tsx
index 2022ee1d..27f57c11 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/06-with-icon/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/06-with-icon/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Badge with Icon
* description: You can also use SVG icons inside the badge elements.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/07-props-chips/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/07-props-chips/index.tsx
index c5ee81c5..0a1bc58d 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/07-props-chips/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/07-props-chips/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Chips (dismissible badges)
* description: This example can be used to make badges dismissible by adding a close button.
+ * height: 200
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/badge/08-with-icon-only/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/badge/08-with-icon-only/index.tsx
index e3c59138..5dd7f4f7 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/badge/08-with-icon-only/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/badge/08-with-icon-only/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Badge with Icon only
* description: You can also use badge with only icon.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
import { StaticGenerateHandler } from '@builder.io/qwik-city'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/banner/03-banner-marketing-cta/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/banner/03-banner-marketing-cta/index.tsx
index 9256174f..b40d71cb 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/banner/03-banner-marketing-cta/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/banner/03-banner-marketing-cta/index.tsx
@@ -14,7 +14,7 @@ export default component$(() => {
return (
diff --git a/apps/web/src/routes/examples/[theme-rtl]/blockquote/01-default-blockquote/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/blockquote/01-default-blockquote/index.tsx
index 1e9f1f02..d871b265 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/blockquote/01-default-blockquote/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/blockquote/01-default-blockquote/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Default blockquote
* description: Use this example to quote an external source inside a
component.
+ *
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/01-default-breadcrumb/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/01-default-breadcrumb/index.tsx
index e81278c4..5ca621a8 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/01-default-breadcrumb/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/01-default-breadcrumb/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Default Breadcrumb
* description: Use the following breadcrumb example to show the hierarchical structure of pages.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/02-solid-breadcrumb/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/02-solid-breadcrumb/index.tsx
index e5999e04..d0f885e7 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/02-solid-breadcrumb/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/02-solid-breadcrumb/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Solid Breadcrumb
* description: You can alternatively also use the breadcrumb components with a solid background.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/03-custom-icons/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/03-custom-icons/index.tsx
index 10f64ad0..0c007d7e 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/03-custom-icons/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/breadcrumb/03-custom-icons/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Breadcrumb with Custom Icons
* description: You can customize the icons for the home and arrow icons in the breadcrumb component.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button-group/01-default-button-group/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button-group/01-default-button-group/index.tsx
index 92e460c1..c4e9b073 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button-group/01-default-button-group/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button-group/01-default-button-group/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Default button group
* description: Use this example of the component by adding the Button component as a child element and stack them together. You can also use the color prop to change the color of the buttons.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button-group/02-button-group-with-icons/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button-group/02-button-group-with-icons/index.tsx
index 2beba277..536561a1 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button-group/02-button-group-with-icons/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button-group/02-button-group-with-icons/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button group with icons
* description: Import one of the icons from the flowbite-qwik-icons library and add it as a child element to the component to create multiple buttons with icons grouped together.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button-group/03-button-group-as-links/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button-group/03-button-group-as-links/index.tsx
index a9e20df9..4f9814cf 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button-group/03-button-group-as-links/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button-group/03-button-group-as-links/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button group as links
* description: You can also use the button group component as links.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button-group/04-button-group-outline/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button-group/04-button-group-outline/index.tsx
index 95f80521..bb07d6de 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button-group/04-button-group-outline/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button-group/04-button-group-outline/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button group Outline
* description: Group a series of buttons together on a single line or stack them in a vertical column.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button-group/05-button-group-outline-with-icons/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button-group/05-button-group-outline-with-icons/index.tsx
index afc444eb..3aae1f64 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button-group/05-button-group-outline-with-icons/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button-group/05-button-group-outline-with-icons/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Outlined with icon
* description: Group a series of buttons together on a single line or stack them in a vertical column.
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button-group/06-button-group-event-handler/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button-group/06-button-group-event-handler/index.tsx
index dde978a7..57452a9d 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button-group/06-button-group-event-handler/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button-group/06-button-group-event-handler/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button group event handler
* description: You can use onClick$ option of the Button component to know which one is clicked
+ * height: 100
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/01-default-button/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/01-default-button/index.tsx
index 91233469..b3cd98c1 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/01-default-button/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/01-default-button/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Default button
* description: Use these default button styles with multiple colors to indicate an action or link within your website.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/02-button-size/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/02-button-size/index.tsx
index 2a1ef12f..94450d66 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/02-button-size/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/02-button-size/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button sizes
* description: Use these examples if you want to use smaller or larger buttons.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/03-button-pill/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/03-button-pill/index.tsx
index 343d8a84..e04abdd4 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/03-button-pill/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/03-button-pill/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button pills
* description: The button pills can be used as an alternative style by using fully rounded edges.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/04-button-gradient-monochrome/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/04-button-gradient-monochrome/index.tsx
index 86fb753a..df5fe8b9 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/04-button-gradient-monochrome/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/04-button-gradient-monochrome/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button gradient monochrome
* description: These beautifully colored buttons built with the gradient color stops utility classes from Tailwind CSS can be used as a creative alternative to the default button styles.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/05-button-gradient-duotone/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/05-button-gradient-duotone/index.tsx
index f1641806..d5c10141 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/05-button-gradient-duotone/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/05-button-gradient-duotone/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button gradient duotone
* description: These buttons use a style that includes two contrasted colors creating an impressive mesh gradient effect.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/06-button-outline/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/06-button-outline/index.tsx
index 85356175..0c57c518 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/06-button-outline/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/06-button-outline/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button outline
* description: This incorporates an outline border
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/07-button-outline-gradient/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/07-button-outline-gradient/index.tsx
index 05e7ad25..7f00fcea 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/07-button-outline-gradient/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/07-button-outline-gradient/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button outline gradient
* description: This is a special button style that incorporates a gradient color for the outline that can be used as a secondary style to the fully colored gradient buttons.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/08-button-shadow/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/08-button-shadow/index.tsx
index 93ae5ec7..91319d21 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/08-button-shadow/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/08-button-shadow/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button colored shadows
* description: These beautiful button elements with color shadows can be used since the release of Tailwind v3.0.
+ * height: 200
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/09-button-square/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/09-button-square/index.tsx
index 13c6cf4c..1318e9d7 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/09-button-square/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/09-button-square/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button square
* description: Sometimes you need a button to indicate an action using only an icon.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/10-button-loading/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/10-button-loading/index.tsx
index 09c97f04..2369b536 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/10-button-loading/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/10-button-loading/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button loading
* description: Use the Spinner components to indicate a loader animation inside buttons:
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/11-button-disabled/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/11-button-disabled/index.tsx
index fc38fcea..8d7a74b2 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/11-button-disabled/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/11-button-disabled/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button disabled
* description: Use the following styles to indicate a disabled button. This can be often used inside form elements to disable the submit button before all the form elements have been completed and validated.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/12-button-as-link/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/12-button-as-link/index.tsx
index 71e69865..3f8b5d85 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/12-button-as-link/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/12-button-as-link/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button as link
* description: You can add a link to a Button component.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/13-button-full/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/13-button-full/index.tsx
index d5a4b1a8..9db264f8 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/13-button-full/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/13-button-full/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button full option
* description: Display a button taking the full width of its container
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/14-button-slot-default/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/14-button-slot-default/index.tsx
index 733ea4d6..e4e55c31 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/14-button-slot-default/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/14-button-slot-default/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button slot default
* description: Add content inside the button as default
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/15-button-slot-prefix/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/15-button-slot-prefix/index.tsx
index 96b02c2d..a7d60d82 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/15-button-slot-prefix/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/15-button-slot-prefix/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button slot prefix
* description: Add prefix content inside the button
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/16-button-slot-suffix/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/16-button-slot-suffix/index.tsx
index 106d9d2e..be432f82 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/16-button-slot-suffix/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/16-button-slot-suffix/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button slot suffix
* description: Add suffix content inside the button
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/button/17-button-with-custom-tag/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/button/17-button-with-custom-tag/index.tsx
index 007c59bf..f10640f4 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/button/17-button-with-custom-tag/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/button/17-button-with-custom-tag/index.tsx
@@ -1,6 +1,7 @@
/**
* title: Button with custom tag
* description: You can use a custom tag for the Button component.
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/clipboard/01-default/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/clipboard/01-default/index.tsx
index 4f0324a2..8362c37d 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/clipboard/01-default/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/clipboard/01-default/index.tsx
@@ -1,7 +1,7 @@
/**
* title: Default copy to clipboard
* description: Use this example to copy the content of an input text field by clicking on a button and update the button text.
- * height: 200
+ * height: 150
*/
import { component$, useSignal } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/clipboard/02-with-icon/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/clipboard/02-with-icon/index.tsx
index 1f460292..05efbbaa 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/clipboard/02-with-icon/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/clipboard/02-with-icon/index.tsx
@@ -1,7 +1,7 @@
/**
* title: Input with copy button
* description: This example can be used to copy the content of an input field by clicking on a button with an icon positioned inside the form element and also show a tooltip with a message when the text has been copied.
- * height: 200
+ * height: 150
*/
import { component$, useSignal } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/clipboard/03-with-icon-text/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/clipboard/03-with-icon-text/index.tsx
index 97889076..dfd249d5 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/clipboard/03-with-icon-text/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/clipboard/03-with-icon-text/index.tsx
@@ -1,7 +1,7 @@
/**
* title: Copy button with text
* description: Use this example to show a copy button inside the input field with a text label and icon that updates to a success state when the text has been copied.
- * height: 200
+ * height: 150
*/
import { component$, useSignal } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/clipboard/04-custom-tooltip/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/clipboard/04-custom-tooltip/index.tsx
index 85227794..77f650d5 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/clipboard/04-custom-tooltip/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/clipboard/04-custom-tooltip/index.tsx
@@ -1,7 +1,7 @@
/**
* title: Custom Tooltip
* description: Use the props `tooltipCopyLabel` and `tooltipCopiedLabel` to customize the tooltip labels of the Clipboard component.
- * height: 200
+ * height: 150
*/
import { component$, useSignal } from '@builder.io/qwik'
diff --git a/apps/web/src/routes/examples/[theme-rtl]/footer/01-default/index.tsx b/apps/web/src/routes/examples/[theme-rtl]/footer/01-default/index.tsx
index 6e8b41cb..3b223e91 100644
--- a/apps/web/src/routes/examples/[theme-rtl]/footer/01-default/index.tsx
+++ b/apps/web/src/routes/examples/[theme-rtl]/footer/01-default/index.tsx
@@ -1,7 +1,7 @@
/**
* title: Default footer
* description: Use this footer component to show a copyright notice and some helpful website links.
- * height: 400
+ * height: 150
*/
import { component$ } from '@builder.io/qwik'
@@ -13,6 +13,7 @@ export default component$(() => {
return (