-
+
-
- {breadcrumb.section && breadcrumb.sectionLink ? (
- <>
-
- {breadcrumb.section}
-
-
-
- {breadcrumb.title}
-
- >
- ) : (
- {breadcrumb.title}
- )}
-
+
setIsCommandPaletteOpen(true)}
+ >
+
+ Search
+ ⌘K
+
{
+
);
};
diff --git a/docs-ui/src/css/globals.css b/docs-ui/src/css/globals.css
index dcc348a9ee..407138fd61 100644
--- a/docs-ui/src/css/globals.css
+++ b/docs-ui/src/css/globals.css
@@ -17,6 +17,10 @@
--surface-1: #f4f4f4;
--code-bg: #3e444f;
--code-title: #505865;
+ --badge-red-bg: color(display-p3 0.831 0.184 0.012/0.091);
+ --badge-red-color: color(display-p3 0.755 0.259 0.152);
+ --badge-gray-bg: #dee3ec;
+ --badge-gray-color: #35363d;
}
[data-theme-mode='dark'] {
diff --git a/docs-ui/src/css/mdx.module.css b/docs-ui/src/css/mdx.module.css
index 7cc2422ecd..ea6e3c6549 100644
--- a/docs-ui/src/css/mdx.module.css
+++ b/docs-ui/src/css/mdx.module.css
@@ -27,18 +27,24 @@
line-height: 1.5;
margin-top: 0;
margin-bottom: 1rem;
- color: var(--secondary);
+ color: var(--primary);
}
.ul {
- margin: 0;
+ margin-top: 0;
+ margin-bottom: 1rem;
padding-left: 2rem;
}
.li {
- color: var(--secondary);
+ color: var(--primary);
margin-bottom: 0.5rem;
line-height: 1.5;
+ padding-left: 0.4rem;
+}
+
+.li::marker {
+ color: var(--text-secondary);
}
.a {
@@ -73,3 +79,34 @@
.anchorLink:hover .anchorHash {
opacity: 1;
}
+
+.table {
+ width: 100%;
+ border-collapse: collapse;
+ margin-bottom: 1rem;
+ font-size: 0.875rem;
+}
+
+.th {
+ text-align: left;
+ padding: 0.75rem 1rem;
+ border-bottom: 1px solid var(--border);
+ color: var(--primary);
+ font-weight: 500;
+}
+
+.td {
+ padding: 0.75rem 1rem;
+ border-bottom: 1px solid var(--border);
+ color: var(--secondary);
+}
+
+.td code {
+ font-family: var(--font-mono);
+ background-color: var(--bg);
+ padding: 0.2rem 0.375rem;
+ border-radius: 0.25rem;
+ color: var(--secondary);
+ border: 1px solid var(--border);
+ font-size: 0.8125rem;
+}
diff --git a/packages/ui/css/styles.css b/docs-ui/src/css/theme-backstage.css
similarity index 93%
rename from packages/ui/css/styles.css
rename to docs-ui/src/css/theme-backstage.css
index 4f0f333c25..7316fe0549 100644
--- a/packages/ui/css/styles.css
+++ b/docs-ui/src/css/theme-backstage.css
@@ -1,15 +1,13 @@
-@layer tokens, base, components, utilities;
-
-/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
@layer tokens {
:root {
--bui-font-regular: system-ui;
- --bui-font-monospace: ui-monospace, "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace;
+ --bui-font-monospace: ui-monospace, 'Menlo', 'Monaco', 'Consolas',
+ 'Liberation Mono', 'Courier New', monospace;
--bui-font-weight-regular: 400;
--bui-font-weight-bold: 600;
- --bui-font-size-1: .625rem;
- --bui-font-size-2: .75rem;
- --bui-font-size-3: .875rem;
+ --bui-font-size-1: 0.625rem;
+ --bui-font-size-2: 0.75rem;
+ --bui-font-size-3: 0.875rem;
--bui-font-size-4: 1rem;
--bui-font-size-5: 1.25rem;
--bui-font-size-6: 1.5rem;
@@ -17,8 +15,8 @@
--bui-font-size-8: 3rem;
--bui-font-size-9: 4rem;
--bui-font-size-10: 5.75rem;
- --bui-space: .25rem;
- --bui-space-0_5: calc(var(--bui-space) * .5);
+ --bui-space: 0.25rem;
+ --bui-space-0_5: calc(var(--bui-space) * 0.5);
--bui-space-1: var(--bui-space);
--bui-space-1_5: calc(var(--bui-space) * 1.5);
--bui-space-2: calc(var(--bui-space) * 2);
@@ -34,66 +32,55 @@
--bui-space-12: calc(var(--bui-space) * 12);
--bui-space-13: calc(var(--bui-space) * 13);
--bui-space-14: calc(var(--bui-space) * 14);
- --bui-radius-1: calc(.125rem);
- --bui-radius-2: calc(.25rem);
- --bui-radius-3: calc(.5rem);
- --bui-radius-4: calc(.75rem);
+ --bui-radius-1: calc(0.125rem);
+ --bui-radius-2: calc(0.25rem);
+ --bui-radius-3: calc(0.5rem);
+ --bui-radius-4: calc(0.75rem);
--bui-radius-5: calc(1rem);
--bui-radius-6: calc(1.25rem);
--bui-radius-full: 9999px;
--bui-black: #000;
--bui-white: #fff;
- --bui-gray-1: #f8f8f8;
- --bui-gray-2: #ececec;
- --bui-gray-3: #d9d9d9;
- --bui-gray-4: #c1c1c1;
- --bui-gray-5: #9e9e9e;
- --bui-gray-6: #8c8c8c;
- --bui-gray-7: #757575;
- --bui-gray-8: #595959;
- --bui-bg-surface-0: var(--bui-gray-1);
- --bui-bg-surface-1: var(--bui-white);
- --bui-bg-surface-2: var(--bui-gray-1);
- --bui-bg-surface-3: var(--bui-gray-2);
--bui-bg-solid: #1f5493;
--bui-bg-solid-hover: #163a66;
--bui-bg-solid-pressed: #0f2b4e;
--bui-bg-solid-disabled: #163a66;
- --bui-bg-neutral-on-surface-0: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-0-hover: oklch(0% 0 0 / .12);
- --bui-bg-neutral-on-surface-0-pressed: oklch(0% 0 0 / .16);
- --bui-bg-neutral-on-surface-0-disabled: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-1: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-1-hover: oklch(0% 0 0 / .12);
- --bui-bg-neutral-on-surface-1-pressed: oklch(0% 0 0 / .16);
- --bui-bg-neutral-on-surface-1-disabled: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-2: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-2-hover: oklch(0% 0 0 / .12);
- --bui-bg-neutral-on-surface-2-pressed: oklch(0% 0 0 / .16);
- --bui-bg-neutral-on-surface-2-disabled: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-3: oklch(0% 0 0 / .06);
- --bui-bg-neutral-on-surface-3-hover: oklch(0% 0 0 / .12);
- --bui-bg-neutral-on-surface-3-pressed: oklch(0% 0 0 / .16);
- --bui-bg-neutral-on-surface-3-disabled: oklch(0% 0 0 / .06);
- --bui-bg-danger: #feebe7;
- --bui-bg-warning: #fff2b2;
- --bui-bg-success: #e6f6eb;
+ --bui-bg-app: #f8f8f8;
+ --bui-bg-neutral-1: #fff;
+ --bui-bg-neutral-1-hover: oklch(0% 0 0/0.12);
+ --bui-bg-neutral-1-pressed: oklch(0% 0 0/0.16);
+ --bui-bg-neutral-1-disabled: oklch(0% 0 0/0.06);
+ --bui-bg-neutral-2: oklch(0% 0 0/0.06);
+ --bui-bg-neutral-2-hover: oklch(0% 0 0/0.12);
+ --bui-bg-neutral-2-pressed: oklch(0% 0 0/0.16);
+ --bui-bg-neutral-2-disabled: oklch(0% 0 0/0.06);
+ --bui-bg-neutral-3: oklch(0% 0 0/0.06);
+ --bui-bg-neutral-3-hover: oklch(0% 0 0/0.12);
+ --bui-bg-neutral-3-pressed: oklch(0% 0 0/0.16);
+ --bui-bg-neutral-3-disabled: oklch(0% 0 0/0.06);
+ --bui-bg-neutral-4: oklch(0% 0 0/0.06);
+ --bui-bg-neutral-4-hover: oklch(0% 0 0/0.12);
+ --bui-bg-neutral-4-pressed: oklch(0% 0 0/0.16);
+ --bui-bg-neutral-4-disabled: oklch(0% 0 0/0.06);
+ --bui-bg-danger: #ffe2e2;
+ --bui-bg-warning: #ffedd5;
+ --bui-bg-success: #dcfce7;
+ --bui-bg-info: #dbeafe;
--bui-fg-primary: var(--bui-black);
- --bui-fg-secondary: var(--bui-gray-7);
- --bui-fg-link: #1f5493;
- --bui-fg-link-hover: #1f2d5c;
- --bui-fg-disabled: #9e9e9e;
+ --bui-fg-secondary: oklch(0% 0 0/0.5);
+ --bui-fg-disabled: oklch(0% 0 0/0.28);
--bui-fg-solid: var(--bui-white);
--bui-fg-solid-disabled: #98a8bc;
- --bui-fg-tint: #1f5493;
- --bui-fg-tint-disabled: var(--bui-gray-5);
- --bui-fg-danger: #e22b2b;
- --bui-fg-warning: #e36d05;
- --bui-fg-success: #1db954;
- --bui-border: #0000001a;
- --bui-border-hover: #0003;
- --bui-border-pressed: #0006;
- --bui-border-disabled: #0000001a;
+ --bui-fg-danger-on-bg: #991919;
+ --bui-fg-warning-on-bg: #92310a;
+ --bui-fg-success-on-bg: #116932;
+ --bui-fg-info-on-bg: #173da6;
+ --bui-fg-danger: #ec3b18;
+ --bui-fg-warning: #ef7a32;
+ --bui-fg-success: #1ed760;
+ --bui-fg-info: #0d74ce;
+ --bui-border-2: #0000001a;
+ --bui-border-info: #7ea9d6;
--bui-border-danger: #f87a7a;
--bui-border-warning: #e36d05;
--bui-border-success: #53db83;
@@ -101,61 +88,49 @@
--bui-scrollbar: #a0a0a03b;
--bui-scrollbar-thumb: #a0a0a0;
--bui-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
- --bui-animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
+ --bui-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
-
- [data-theme-mode="dark"] {
- --bui-gray-1: #191919;
- --bui-gray-2: #242424;
- --bui-gray-3: #373737;
- --bui-gray-4: #464646;
- --bui-gray-5: #575757;
- --bui-gray-6: #7b7b7b;
- --bui-gray-7: #9e9e9e;
- --bui-gray-8: #b4b4b4;
- --bui-bg-surface-0: #333;
- --bui-bg-surface-1: var(--bui-gray-1);
- --bui-bg-surface-2: var(--bui-gray-2);
- --bui-bg-surface-3: var(--bui-gray-3);
+ [data-theme-mode='dark'] {
--bui-bg-solid: #9cc9ff;
--bui-bg-solid-hover: #83b9fd;
--bui-bg-solid-pressed: #83b9fd;
--bui-bg-solid-disabled: #1b3d68;
- --bui-bg-neutral-on-surface-0: oklch(100% 0 0 / .1);
- --bui-bg-neutral-on-surface-0-hover: oklch(100% 0 0 / .14);
- --bui-bg-neutral-on-surface-0-pressed: oklch(100% 0 0 / .2);
- --bui-bg-neutral-on-surface-0-disabled: oklch(100% 0 0 / .1);
- --bui-bg-neutral-on-surface-1: oklch(100% 0 0 / .06);
- --bui-bg-neutral-on-surface-1-hover: oklch(100% 0 0 / .1);
- --bui-bg-neutral-on-surface-1-pressed: oklch(100% 0 0 / .16);
- --bui-bg-neutral-on-surface-1-disabled: oklch(100% 0 0 / .06);
- --bui-bg-neutral-on-surface-2: oklch(100% 0 0 / .08);
- --bui-bg-neutral-on-surface-2-hover: oklch(100% 0 0 / .12);
- --bui-bg-neutral-on-surface-2-pressed: oklch(100% 0 0 / .2);
- --bui-bg-neutral-on-surface-2-disabled: oklch(100% 0 0 / .08);
- --bui-bg-neutral-on-surface-3: oklch(100% 0 0 / .08);
- --bui-bg-neutral-on-surface-3-hover: oklch(100% 0 0 / .12);
- --bui-bg-neutral-on-surface-3-pressed: oklch(100% 0 0 / .2);
- --bui-bg-neutral-on-surface-3-disabled: oklch(100% 0 0 / .08);
- --bui-bg-danger: #3b1219;
+ --bui-bg-app: #333;
+ --bui-bg-neutral-1: oklch(100% 0 0/0.1);
+ --bui-bg-neutral-1-hover: oklch(100% 0 0/0.14);
+ --bui-bg-neutral-1-pressed: oklch(100% 0 0/0.2);
+ --bui-bg-neutral-1-disabled: oklch(100% 0 0/0.1);
+ --bui-bg-neutral-2: oklch(100% 0 0/0.06);
+ --bui-bg-neutral-2-hover: oklch(100% 0 0/0.1);
+ --bui-bg-neutral-2-pressed: oklch(100% 0 0/0.16);
+ --bui-bg-neutral-2-disabled: oklch(100% 0 0/0.06);
+ --bui-bg-neutral-3: oklch(100% 0 0/0.08);
+ --bui-bg-neutral-3-hover: oklch(100% 0 0/0.12);
+ --bui-bg-neutral-3-pressed: oklch(100% 0 0/0.2);
+ --bui-bg-neutral-3-disabled: oklch(100% 0 0/0.08);
+ --bui-bg-neutral-4: oklch(100% 0 0/0.08);
+ --bui-bg-neutral-4-hover: oklch(100% 0 0/0.12);
+ --bui-bg-neutral-4-pressed: oklch(100% 0 0/0.2);
+ --bui-bg-neutral-4-disabled: oklch(100% 0 0/0.08);
+ --bui-bg-danger: #300c0c;
--bui-bg-warning: #302008;
- --bui-bg-success: #132d21;
+ --bui-bg-success: #042713;
+ --bui-bg-info: #132049;
--bui-fg-primary: var(--bui-white);
- --bui-fg-secondary: var(--bui-gray-7);
- --bui-fg-link: #9cc9ff;
- --bui-fg-link-hover: #7eb5f7;
- --bui-fg-disabled: var(--bui-gray-7);
+ --bui-fg-secondary: oklch(0% 0 0/0.5);
+ --bui-fg-disabled: oklch(0% 0 0/0.28);
--bui-fg-solid: #101821;
--bui-fg-solid-disabled: #6191cc;
- --bui-fg-tint: #9cc9ff;
- --bui-fg-tint-disabled: var(--bui-gray-5);
- --bui-fg-danger: #e22b2b;
- --bui-fg-warning: #e36d05;
- --bui-fg-success: #1db954;
- --bui-border: #ffffff1f;
- --bui-border-hover: #fff6;
- --bui-border-pressed: #ffffff80;
- --bui-border-disabled: #fff3;
+ --bui-fg-danger-on-bg: #fca5a5;
+ --bui-fg-warning-on-bg: #fdba74;
+ --bui-fg-success-on-bg: #86efac;
+ --bui-fg-info-on-bg: #a3cfff;
+ --bui-fg-danger: #ff5a30;
+ --bui-fg-warning: #ffa057;
+ --bui-fg-success: #1ed760;
+ --bui-fg-info: #70b8ff;
+ --bui-border-2: #ffffff1f;
+ --bui-border-info: #7ea9d6;
--bui-border-danger: #f87a7a;
--bui-border-warning: #e36d05;
--bui-border-success: #53db83;
@@ -165,109 +140,104 @@
--bui-shadow: none;
}
}
-
@layer base {
- *, :before, :after {
+ *,
+ :before,
+ :after {
box-sizing: border-box;
}
-
html {
-webkit-text-size-adjust: 100%;
tab-size: 4;
- font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
+ font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif,
+ Apple Color Emoji, Segoe UI Emoji;
line-height: 1.15;
}
-
body {
margin: 0;
}
-
- b, strong {
+ b,
+ strong {
font-weight: bolder;
}
-
- code, kbd, samp, pre {
- font-family: ui-monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
+ code,
+ kbd,
+ samp,
+ pre {
+ font-family: ui-monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo,
+ monospace;
font-size: 1em;
}
-
small {
font-size: 80%;
}
-
- sub, sup {
+ sub,
+ sup {
vertical-align: baseline;
font-size: 75%;
line-height: 0;
position: relative;
}
-
sub {
- bottom: -.25em;
+ bottom: -0.25em;
}
-
sup {
- top: -.5em;
+ top: -0.5em;
}
-
table {
border-color: currentColor;
}
-
- button, input, optgroup, select, textarea {
+ button,
+ input,
+ optgroup,
+ select,
+ textarea {
margin: 0;
font-family: inherit;
font-size: 100%;
line-height: 1.15;
}
-
- button, [type="button"], [type="reset"], [type="submit"] {
+ button,
+ [type='button'],
+ [type='reset'],
+ [type='submit'] {
-webkit-appearance: button;
}
-
legend {
padding: 0;
}
-
progress {
vertical-align: baseline;
}
-
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
+ ::-webkit-inner-spin-button,
+ ::-webkit-outer-spin-button {
height: auto;
}
-
- [type="search"] {
+ [type='search'] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
-
::-webkit-search-decoration {
-webkit-appearance: none;
}
-
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
-
summary {
display: list-item;
}
-
:where(a) {
color: inherit;
text-decoration: none;
}
-
@keyframes pulse {
50% {
- opacity: .5;
+ opacity: 0.5;
}
}
-
body {
- background-color: var(--bui-bg-surface-0);
+ background-color: var(--bui-bg-app);
color: var(--bui-fg-primary);
font-family: var(--bui-font-regular);
font-weight: var(--bui-font-weight-regular);
@@ -275,9012 +245,6914 @@
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
-
- [data-theme-mode="dark"] {
+ [data-theme-mode='dark'] {
color-scheme: dark;
}
-
- [data-theme-mode="light"] {
+ [data-theme-mode='light'] {
color-scheme: light;
}
}
-
@layer components;
-
@layer utilities {
.bui-p {
padding: var(--p);
}
-
.bui-p-0\.5 {
padding: var(--bui-space-0_5);
}
-
.bui-p-1 {
padding: var(--bui-space-1);
}
-
.bui-p-1\.5 {
padding: var(--bui-space-1_5);
}
-
.bui-p-2 {
padding: var(--bui-space-2);
}
-
.bui-p-3 {
padding: var(--bui-space-3);
}
-
.bui-p-4 {
padding: var(--bui-space-4);
}
-
.bui-p-5 {
padding: var(--bui-space-5);
}
-
.bui-p-6 {
padding: var(--bui-space-6);
}
-
.bui-p-7 {
padding: var(--bui-space-7);
}
-
.bui-p-8 {
padding: var(--bui-space-8);
}
-
.bui-p-9 {
padding: var(--bui-space-9);
}
-
.bui-p-10 {
padding: var(--bui-space-10);
}
-
.bui-p-11 {
padding: var(--bui-space-11);
}
-
.bui-p-12 {
padding: var(--bui-space-12);
}
-
.bui-p-13 {
padding: var(--bui-space-13);
}
-
.bui-p-14 {
padding: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-p {
padding: var(--p-xs);
}
-
.xs\:bui-p-0\.5 {
padding: var(--bui-space-0_5);
}
-
.xs\:bui-p-1 {
padding: var(--bui-space-1);
}
-
.xs\:bui-p-1\.5 {
padding: var(--bui-space-1_5);
}
-
.xs\:bui-p-2 {
padding: var(--bui-space-2);
}
-
.xs\:bui-p-3 {
padding: var(--bui-space-3);
}
-
.xs\:bui-p-4 {
padding: var(--bui-space-4);
}
-
.xs\:bui-p-5 {
padding: var(--bui-space-5);
}
-
.xs\:bui-p-6 {
padding: var(--bui-space-6);
}
-
.xs\:bui-p-7 {
padding: var(--bui-space-7);
}
-
.xs\:bui-p-8 {
padding: var(--bui-space-8);
}
-
.xs\:bui-p-9 {
padding: var(--bui-space-9);
}
-
.xs\:bui-p-10 {
padding: var(--bui-space-10);
}
-
.xs\:bui-p-11 {
padding: var(--bui-space-11);
}
-
.xs\:bui-p-12 {
padding: var(--bui-space-12);
}
-
.xs\:bui-p-13 {
padding: var(--bui-space-13);
}
-
.xs\:bui-p-14 {
padding: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-p {
padding: var(--p-sm);
}
-
.sm\:bui-p-0\.5 {
padding: var(--bui-space-0_5);
}
-
.sm\:bui-p-1 {
padding: var(--bui-space-1);
}
-
.sm\:bui-p-1\.5 {
padding: var(--bui-space-1_5);
}
-
.sm\:bui-p-2 {
padding: var(--bui-space-2);
}
-
.sm\:bui-p-3 {
padding: var(--bui-space-3);
}
-
.sm\:bui-p-4 {
padding: var(--bui-space-4);
}
-
.sm\:bui-p-5 {
padding: var(--bui-space-5);
}
-
.sm\:bui-p-6 {
padding: var(--bui-space-6);
}
-
.sm\:bui-p-7 {
padding: var(--bui-space-7);
}
-
.sm\:bui-p-8 {
padding: var(--bui-space-8);
}
-
.sm\:bui-p-9 {
padding: var(--bui-space-9);
}
-
.sm\:bui-p-10 {
padding: var(--bui-space-10);
}
-
.sm\:bui-p-11 {
padding: var(--bui-space-11);
}
-
.sm\:bui-p-12 {
padding: var(--bui-space-12);
}
-
.sm\:bui-p-13 {
padding: var(--bui-space-13);
}
-
.sm\:bui-p-14 {
padding: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-p {
padding: var(--p-md);
}
-
.md\:bui-p-0\.5 {
padding: var(--bui-space-0_5);
}
-
.md\:bui-p-1 {
padding: var(--bui-space-1);
}
-
.md\:bui-p-1\.5 {
padding: var(--bui-space-1_5);
}
-
.md\:bui-p-2 {
padding: var(--bui-space-2);
}
-
.md\:bui-p-3 {
padding: var(--bui-space-3);
}
-
.md\:bui-p-4 {
padding: var(--bui-space-4);
}
-
.md\:bui-p-5 {
padding: var(--bui-space-5);
}
-
.md\:bui-p-6 {
padding: var(--bui-space-6);
}
-
.md\:bui-p-7 {
padding: var(--bui-space-7);
}
-
.md\:bui-p-8 {
padding: var(--bui-space-8);
}
-
.md\:bui-p-9 {
padding: var(--bui-space-9);
}
-
.md\:bui-p-10 {
padding: var(--bui-space-10);
}
-
.md\:bui-p-11 {
padding: var(--bui-space-11);
}
-
.md\:bui-p-12 {
padding: var(--bui-space-12);
}
-
.md\:bui-p-13 {
padding: var(--bui-space-13);
}
-
.md\:bui-p-14 {
padding: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-p {
padding: var(--p-lg);
}
-
.lg\:bui-p-0\.5 {
padding: var(--bui-space-0_5);
}
-
.lg\:bui-p-1 {
padding: var(--bui-space-1);
}
-
.lg\:bui-p-1\.5 {
padding: var(--bui-space-1_5);
}
-
.lg\:bui-p-2 {
padding: var(--bui-space-2);
}
-
.lg\:bui-p-3 {
padding: var(--bui-space-3);
}
-
.lg\:bui-p-4 {
padding: var(--bui-space-4);
}
-
.lg\:bui-p-5 {
padding: var(--bui-space-5);
}
-
.lg\:bui-p-6 {
padding: var(--bui-space-6);
}
-
.lg\:bui-p-7 {
padding: var(--bui-space-7);
}
-
.lg\:bui-p-8 {
padding: var(--bui-space-8);
}
-
.lg\:bui-p-9 {
padding: var(--bui-space-9);
}
-
.lg\:bui-p-10 {
padding: var(--bui-space-10);
}
-
.lg\:bui-p-11 {
padding: var(--bui-space-11);
}
-
.lg\:bui-p-12 {
padding: var(--bui-space-12);
}
-
.lg\:bui-p-13 {
padding: var(--bui-space-13);
}
-
.lg\:bui-p-14 {
padding: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-p {
padding: var(--p-xl);
}
-
.xl\:bui-p-0\.5 {
padding: var(--bui-space-0_5);
}
-
.xl\:bui-p-1 {
padding: var(--bui-space-1);
}
-
.xl\:bui-p-1\.5 {
padding: var(--bui-space-1_5);
}
-
.xl\:bui-p-2 {
padding: var(--bui-space-2);
}
-
.xl\:bui-p-3 {
padding: var(--bui-space-3);
}
-
.xl\:bui-p-4 {
padding: var(--bui-space-4);
}
-
.xl\:bui-p-5 {
padding: var(--bui-space-5);
}
-
.xl\:bui-p-6 {
padding: var(--bui-space-6);
}
-
.xl\:bui-p-7 {
padding: var(--bui-space-7);
}
-
.xl\:bui-p-8 {
padding: var(--bui-space-8);
}
-
.xl\:bui-p-9 {
padding: var(--bui-space-9);
}
-
.xl\:bui-p-10 {
padding: var(--bui-space-10);
}
-
.xl\:bui-p-11 {
padding: var(--bui-space-11);
}
-
.xl\:bui-p-12 {
padding: var(--bui-space-12);
}
-
.xl\:bui-p-13 {
padding: var(--bui-space-13);
}
-
.xl\:bui-p-14 {
padding: var(--bui-space-14);
}
}
-
.bui-pl {
padding-left: var(--pl);
}
-
.bui-pl-0\.5 {
padding-left: var(--bui-space-0_5);
}
-
.bui-pl-1 {
padding-left: var(--bui-space-1);
}
-
.bui-pl-1\.5 {
padding-left: var(--bui-space-1_5);
}
-
.bui-pl-2 {
padding-left: var(--bui-space-2);
}
-
.bui-pl-3 {
padding-left: var(--bui-space-3);
}
-
.bui-pl-4 {
padding-left: var(--bui-space-4);
}
-
.bui-pl-5 {
padding-left: var(--bui-space-5);
}
-
.bui-pl-6 {
padding-left: var(--bui-space-6);
}
-
.bui-pl-7 {
padding-left: var(--bui-space-7);
}
-
.bui-pl-8 {
padding-left: var(--bui-space-8);
}
-
.bui-pl-9 {
padding-left: var(--bui-space-9);
}
-
.bui-pl-10 {
padding-left: var(--bui-space-10);
}
-
.bui-pl-11 {
padding-left: var(--bui-space-11);
}
-
.bui-pl-12 {
padding-left: var(--bui-space-12);
}
-
.bui-pl-13 {
padding-left: var(--bui-space-13);
}
-
.bui-pl-14 {
padding-left: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-pl {
padding-left: var(--pl-xs);
}
-
.xs\:bui-pl-0\.5 {
padding-left: var(--bui-space-0_5);
}
-
.xs\:bui-pl-1 {
padding-left: var(--bui-space-1);
}
-
.xs\:bui-pl-1\.5 {
padding-left: var(--bui-space-1_5);
}
-
.xs\:bui-pl-2 {
padding-left: var(--bui-space-2);
}
-
.xs\:bui-pl-3 {
padding-left: var(--bui-space-3);
}
-
.xs\:bui-pl-4 {
padding-left: var(--bui-space-4);
}
-
.xs\:bui-pl-5 {
padding-left: var(--bui-space-5);
}
-
.xs\:bui-pl-6 {
padding-left: var(--bui-space-6);
}
-
.xs\:bui-pl-7 {
padding-left: var(--bui-space-7);
}
-
.xs\:bui-pl-8 {
padding-left: var(--bui-space-8);
}
-
.xs\:bui-pl-9 {
padding-left: var(--bui-space-9);
}
-
.xs\:bui-pl-10 {
padding-left: var(--bui-space-10);
}
-
.xs\:bui-pl-11 {
padding-left: var(--bui-space-11);
}
-
.xs\:bui-pl-12 {
padding-left: var(--bui-space-12);
}
-
.xs\:bui-pl-13 {
padding-left: var(--bui-space-13);
}
-
.xs\:bui-pl-14 {
padding-left: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-pl {
padding-left: var(--pl-sm);
}
-
.sm\:bui-pl-0\.5 {
padding-left: var(--bui-space-0_5);
}
-
.sm\:bui-pl-1 {
padding-left: var(--bui-space-1);
}
-
.sm\:bui-pl-1\.5 {
padding-left: var(--bui-space-1_5);
}
-
.sm\:bui-pl-2 {
padding-left: var(--bui-space-2);
}
-
.sm\:bui-pl-3 {
padding-left: var(--bui-space-3);
}
-
.sm\:bui-pl-4 {
padding-left: var(--bui-space-4);
}
-
.sm\:bui-pl-5 {
padding-left: var(--bui-space-5);
}
-
.sm\:bui-pl-6 {
padding-left: var(--bui-space-6);
}
-
.sm\:bui-pl-7 {
padding-left: var(--bui-space-7);
}
-
.sm\:bui-pl-8 {
padding-left: var(--bui-space-8);
}
-
.sm\:bui-pl-9 {
padding-left: var(--bui-space-9);
}
-
.sm\:bui-pl-10 {
padding-left: var(--bui-space-10);
}
-
.sm\:bui-pl-11 {
padding-left: var(--bui-space-11);
}
-
.sm\:bui-pl-12 {
padding-left: var(--bui-space-12);
}
-
.sm\:bui-pl-13 {
padding-left: var(--bui-space-13);
}
-
.sm\:bui-pl-14 {
padding-left: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-pl {
padding-left: var(--pl-md);
}
-
.md\:bui-pl-0\.5 {
padding-left: var(--bui-space-0_5);
}
-
.md\:bui-pl-1 {
padding-left: var(--bui-space-1);
}
-
.md\:bui-pl-1\.5 {
padding-left: var(--bui-space-1_5);
}
-
.md\:bui-pl-2 {
padding-left: var(--bui-space-2);
}
-
.md\:bui-pl-3 {
padding-left: var(--bui-space-3);
}
-
.md\:bui-pl-4 {
padding-left: var(--bui-space-4);
}
-
.md\:bui-pl-5 {
padding-left: var(--bui-space-5);
}
-
.md\:bui-pl-6 {
padding-left: var(--bui-space-6);
}
-
.md\:bui-pl-7 {
padding-left: var(--bui-space-7);
}
-
.md\:bui-pl-8 {
padding-left: var(--bui-space-8);
}
-
.md\:bui-pl-9 {
padding-left: var(--bui-space-9);
}
-
.md\:bui-pl-10 {
padding-left: var(--bui-space-10);
}
-
.md\:bui-pl-11 {
padding-left: var(--bui-space-11);
}
-
.md\:bui-pl-12 {
padding-left: var(--bui-space-12);
}
-
.md\:bui-pl-13 {
padding-left: var(--bui-space-13);
}
-
.md\:bui-pl-14 {
padding-left: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-pl {
padding-left: var(--pl-lg);
}
-
.lg\:bui-pl-0\.5 {
padding-left: var(--bui-space-0_5);
}
-
.lg\:bui-pl-1 {
padding-left: var(--bui-space-1);
}
-
.lg\:bui-pl-1\.5 {
padding-left: var(--bui-space-1_5);
}
-
.lg\:bui-pl-2 {
padding-left: var(--bui-space-2);
}
-
.lg\:bui-pl-3 {
padding-left: var(--bui-space-3);
}
-
.lg\:bui-pl-4 {
padding-left: var(--bui-space-4);
}
-
.lg\:bui-pl-5 {
padding-left: var(--bui-space-5);
}
-
.lg\:bui-pl-6 {
padding-left: var(--bui-space-6);
}
-
.lg\:bui-pl-7 {
padding-left: var(--bui-space-7);
}
-
.lg\:bui-pl-8 {
padding-left: var(--bui-space-8);
}
-
.lg\:bui-pl-9 {
padding-left: var(--bui-space-9);
}
-
.lg\:bui-pl-10 {
padding-left: var(--bui-space-10);
}
-
.lg\:bui-pl-11 {
padding-left: var(--bui-space-11);
}
-
.lg\:bui-pl-12 {
padding-left: var(--bui-space-12);
}
-
.lg\:bui-pl-13 {
padding-left: var(--bui-space-13);
}
-
.lg\:bui-pl-14 {
padding-left: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-pl {
padding-left: var(--pl-xl);
}
-
.xl\:bui-pl-0\.5 {
padding-left: var(--bui-space-0_5);
}
-
.xl\:bui-pl-1 {
padding-left: var(--bui-space-1);
}
-
.xl\:bui-pl-1\.5 {
padding-left: var(--bui-space-1_5);
}
-
.xl\:bui-pl-2 {
padding-left: var(--bui-space-2);
}
-
.xl\:bui-pl-3 {
padding-left: var(--bui-space-3);
}
-
.xl\:bui-pl-4 {
padding-left: var(--bui-space-4);
}
-
.xl\:bui-pl-5 {
padding-left: var(--bui-space-5);
}
-
.xl\:bui-pl-6 {
padding-left: var(--bui-space-6);
}
-
.xl\:bui-pl-7 {
padding-left: var(--bui-space-7);
}
-
.xl\:bui-pl-8 {
padding-left: var(--bui-space-8);
}
-
.xl\:bui-pl-9 {
padding-left: var(--bui-space-9);
}
-
.xl\:bui-pl-10 {
padding-left: var(--bui-space-10);
}
-
.xl\:bui-pl-11 {
padding-left: var(--bui-space-11);
}
-
.xl\:bui-pl-12 {
padding-left: var(--bui-space-12);
}
-
.xl\:bui-pl-13 {
padding-left: var(--bui-space-13);
}
-
.xl\:bui-pl-14 {
padding-left: var(--bui-space-14);
}
}
-
.bui-pr {
padding-right: var(--pr);
}
-
.bui-pr-0\.5 {
padding-right: var(--bui-space-0_5);
}
-
.bui-pr-1 {
padding-right: var(--bui-space-1);
}
-
.bui-pr-1\.5 {
padding-right: var(--bui-space-1_5);
}
-
.bui-pr-2 {
padding-right: var(--bui-space-2);
}
-
.bui-pr-3 {
padding-right: var(--bui-space-3);
}
-
.bui-pr-4 {
padding-right: var(--bui-space-4);
}
-
.bui-pr-5 {
padding-right: var(--bui-space-5);
}
-
.bui-pr-6 {
padding-right: var(--bui-space-6);
}
-
.bui-pr-7 {
padding-right: var(--bui-space-7);
}
-
.bui-pr-8 {
padding-right: var(--bui-space-8);
}
-
.bui-pr-9 {
padding-right: var(--bui-space-9);
}
-
.bui-pr-10 {
padding-right: var(--bui-space-10);
}
-
.bui-pr-11 {
padding-right: var(--bui-space-11);
}
-
.bui-pr-12 {
padding-right: var(--bui-space-12);
}
-
.bui-pr-13 {
padding-right: var(--bui-space-13);
}
-
.bui-pr-14 {
padding-right: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-pr {
padding-right: var(--pr-xs);
}
-
.xs\:bui-pr-0\.5 {
padding-right: var(--bui-space-0_5);
}
-
.xs\:bui-pr-1 {
padding-right: var(--bui-space-1);
}
-
.xs\:bui-pr-1\.5 {
padding-right: var(--bui-space-1_5);
}
-
.xs\:bui-pr-2 {
padding-right: var(--bui-space-2);
}
-
.xs\:bui-pr-3 {
padding-right: var(--bui-space-3);
}
-
.xs\:bui-pr-4 {
padding-right: var(--bui-space-4);
}
-
.xs\:bui-pr-5 {
padding-right: var(--bui-space-5);
}
-
.xs\:bui-pr-6 {
padding-right: var(--bui-space-6);
}
-
.xs\:bui-pr-7 {
padding-right: var(--bui-space-7);
}
-
.xs\:bui-pr-8 {
padding-right: var(--bui-space-8);
}
-
.xs\:bui-pr-9 {
padding-right: var(--bui-space-9);
}
-
.xs\:bui-pr-10 {
padding-right: var(--bui-space-10);
}
-
.xs\:bui-pr-11 {
padding-right: var(--bui-space-11);
}
-
.xs\:bui-pr-12 {
padding-right: var(--bui-space-12);
}
-
.xs\:bui-pr-13 {
padding-right: var(--bui-space-13);
}
-
.xs\:bui-pr-14 {
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-pr {
padding-right: var(--pr-sm);
}
-
.sm\:bui-pr-0\.5 {
padding-right: var(--bui-space-0_5);
}
-
.sm\:bui-pr-1 {
padding-right: var(--bui-space-1);
}
-
.sm\:bui-pr-1\.5 {
padding-right: var(--bui-space-1_5);
}
-
.sm\:bui-pr-2 {
padding-right: var(--bui-space-2);
}
-
.sm\:bui-pr-3 {
padding-right: var(--bui-space-3);
}
-
.sm\:bui-pr-4 {
padding-right: var(--bui-space-4);
}
-
.sm\:bui-pr-5 {
padding-right: var(--bui-space-5);
}
-
.sm\:bui-pr-6 {
padding-right: var(--bui-space-6);
}
-
.sm\:bui-pr-7 {
padding-right: var(--bui-space-7);
}
-
.sm\:bui-pr-8 {
padding-right: var(--bui-space-8);
}
-
.sm\:bui-pr-9 {
padding-right: var(--bui-space-9);
}
-
.sm\:bui-pr-10 {
padding-right: var(--bui-space-10);
}
-
.sm\:bui-pr-11 {
padding-right: var(--bui-space-11);
}
-
.sm\:bui-pr-12 {
padding-right: var(--bui-space-12);
}
-
.sm\:bui-pr-13 {
padding-right: var(--bui-space-13);
}
-
.sm\:bui-pr-14 {
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-pr {
padding-right: var(--pr-md);
}
-
.md\:bui-pr-0\.5 {
padding-right: var(--bui-space-0_5);
}
-
.md\:bui-pr-1 {
padding-right: var(--bui-space-1);
}
-
.md\:bui-pr-1\.5 {
padding-right: var(--bui-space-1_5);
}
-
.md\:bui-pr-2 {
padding-right: var(--bui-space-2);
}
-
.md\:bui-pr-3 {
padding-right: var(--bui-space-3);
}
-
.md\:bui-pr-4 {
padding-right: var(--bui-space-4);
}
-
.md\:bui-pr-5 {
padding-right: var(--bui-space-5);
}
-
.md\:bui-pr-6 {
padding-right: var(--bui-space-6);
}
-
.md\:bui-pr-7 {
padding-right: var(--bui-space-7);
}
-
.md\:bui-pr-8 {
padding-right: var(--bui-space-8);
}
-
.md\:bui-pr-9 {
padding-right: var(--bui-space-9);
}
-
.md\:bui-pr-10 {
padding-right: var(--bui-space-10);
}
-
.md\:bui-pr-11 {
padding-right: var(--bui-space-11);
}
-
.md\:bui-pr-12 {
padding-right: var(--bui-space-12);
}
-
.md\:bui-pr-13 {
padding-right: var(--bui-space-13);
}
-
.md\:bui-pr-14 {
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-pr {
padding-right: var(--pr-lg);
}
-
.lg\:bui-pr-0\.5 {
padding-right: var(--bui-space-0_5);
}
-
.lg\:bui-pr-1 {
padding-right: var(--bui-space-1);
}
-
.lg\:bui-pr-1\.5 {
padding-right: var(--bui-space-1_5);
}
-
.lg\:bui-pr-2 {
padding-right: var(--bui-space-2);
}
-
.lg\:bui-pr-3 {
padding-right: var(--bui-space-3);
}
-
.lg\:bui-pr-4 {
padding-right: var(--bui-space-4);
}
-
.lg\:bui-pr-5 {
padding-right: var(--bui-space-5);
}
-
.lg\:bui-pr-6 {
padding-right: var(--bui-space-6);
}
-
.lg\:bui-pr-7 {
padding-right: var(--bui-space-7);
}
-
.lg\:bui-pr-8 {
padding-right: var(--bui-space-8);
}
-
.lg\:bui-pr-9 {
padding-right: var(--bui-space-9);
}
-
.lg\:bui-pr-10 {
padding-right: var(--bui-space-10);
}
-
.lg\:bui-pr-11 {
padding-right: var(--bui-space-11);
}
-
.lg\:bui-pr-12 {
padding-right: var(--bui-space-12);
}
-
.lg\:bui-pr-13 {
padding-right: var(--bui-space-13);
}
-
.lg\:bui-pr-14 {
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-pr {
padding-right: var(--pr-xl);
}
-
.xl\:bui-pr-0\.5 {
padding-right: var(--bui-space-0_5);
}
-
.xl\:bui-pr-1 {
padding-right: var(--bui-space-1);
}
-
.xl\:bui-pr-1\.5 {
padding-right: var(--bui-space-1_5);
}
-
.xl\:bui-pr-2 {
padding-right: var(--bui-space-2);
}
-
.xl\:bui-pr-3 {
padding-right: var(--bui-space-3);
}
-
.xl\:bui-pr-4 {
padding-right: var(--bui-space-4);
}
-
.xl\:bui-pr-5 {
padding-right: var(--bui-space-5);
}
-
.xl\:bui-pr-6 {
padding-right: var(--bui-space-6);
}
-
.xl\:bui-pr-7 {
padding-right: var(--bui-space-7);
}
-
.xl\:bui-pr-8 {
padding-right: var(--bui-space-8);
}
-
.xl\:bui-pr-9 {
padding-right: var(--bui-space-9);
}
-
.xl\:bui-pr-10 {
padding-right: var(--bui-space-10);
}
-
.xl\:bui-pr-11 {
padding-right: var(--bui-space-11);
}
-
.xl\:bui-pr-12 {
padding-right: var(--bui-space-12);
}
-
.xl\:bui-pr-13 {
padding-right: var(--bui-space-13);
}
-
.xl\:bui-pr-14 {
padding-right: var(--bui-space-14);
}
}
-
.bui-pt {
padding-top: var(--pt);
}
-
.bui-pt-0\.5 {
padding-top: var(--bui-space-0_5);
}
-
.bui-pt-1 {
padding-top: var(--bui-space-1);
}
-
.bui-pt-1\.5 {
padding-top: var(--bui-space-1_5);
}
-
.bui-pt-2 {
padding-top: var(--bui-space-2);
}
-
.bui-pt-3 {
padding-top: var(--bui-space-3);
}
-
.bui-pt-4 {
padding-top: var(--bui-space-4);
}
-
.bui-pt-5 {
padding-top: var(--bui-space-5);
}
-
.bui-pt-6 {
padding-top: var(--bui-space-6);
}
-
.bui-pt-7 {
padding-top: var(--bui-space-7);
}
-
.bui-pt-8 {
padding-top: var(--bui-space-8);
}
-
.bui-pt-9 {
padding-top: var(--bui-space-9);
}
-
.bui-pt-10 {
padding-top: var(--bui-space-10);
}
-
.bui-pt-11 {
padding-top: var(--bui-space-11);
}
-
.bui-pt-12 {
padding-top: var(--bui-space-12);
}
-
.bui-pt-13 {
padding-top: var(--bui-space-13);
}
-
.bui-pt-14 {
padding-top: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-pt {
padding-top: var(--pt-xs);
}
-
.xs\:bui-pt-0\.5 {
padding-top: var(--bui-space-0_5);
}
-
.xs\:bui-pt-1 {
padding-top: var(--bui-space-1);
}
-
.xs\:bui-pt-1\.5 {
padding-top: var(--bui-space-1_5);
}
-
.xs\:bui-pt-2 {
padding-top: var(--bui-space-2);
}
-
.xs\:bui-pt-3 {
padding-top: var(--bui-space-3);
}
-
.xs\:bui-pt-4 {
padding-top: var(--bui-space-4);
}
-
.xs\:bui-pt-5 {
padding-top: var(--bui-space-5);
}
-
.xs\:bui-pt-6 {
padding-top: var(--bui-space-6);
}
-
.xs\:bui-pt-7 {
padding-top: var(--bui-space-7);
}
-
.xs\:bui-pt-8 {
padding-top: var(--bui-space-8);
}
-
.xs\:bui-pt-9 {
padding-top: var(--bui-space-9);
}
-
.xs\:bui-pt-10 {
padding-top: var(--bui-space-10);
}
-
.xs\:bui-pt-11 {
padding-top: var(--bui-space-11);
}
-
.xs\:bui-pt-12 {
padding-top: var(--bui-space-12);
}
-
.xs\:bui-pt-13 {
padding-top: var(--bui-space-13);
}
-
.xs\:bui-pt-14 {
padding-top: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-pt {
padding-top: var(--pt-sm);
}
-
.sm\:bui-pt-0\.5 {
padding-top: var(--bui-space-0_5);
}
-
.sm\:bui-pt-1 {
padding-top: var(--bui-space-1);
}
-
.sm\:bui-pt-1\.5 {
padding-top: var(--bui-space-1_5);
}
-
.sm\:bui-pt-2 {
padding-top: var(--bui-space-2);
}
-
.sm\:bui-pt-3 {
padding-top: var(--bui-space-3);
}
-
.sm\:bui-pt-4 {
padding-top: var(--bui-space-4);
}
-
.sm\:bui-pt-5 {
padding-top: var(--bui-space-5);
}
-
.sm\:bui-pt-6 {
padding-top: var(--bui-space-6);
}
-
.sm\:bui-pt-7 {
padding-top: var(--bui-space-7);
}
-
.sm\:bui-pt-8 {
padding-top: var(--bui-space-8);
}
-
.sm\:bui-pt-9 {
padding-top: var(--bui-space-9);
}
-
.sm\:bui-pt-10 {
padding-top: var(--bui-space-10);
}
-
.sm\:bui-pt-11 {
padding-top: var(--bui-space-11);
}
-
.sm\:bui-pt-12 {
padding-top: var(--bui-space-12);
}
-
.sm\:bui-pt-13 {
padding-top: var(--bui-space-13);
}
-
.sm\:bui-pt-14 {
padding-top: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-pt {
padding-top: var(--pt-md);
}
-
.md\:bui-pt-0\.5 {
padding-top: var(--bui-space-0_5);
}
-
.md\:bui-pt-1 {
padding-top: var(--bui-space-1);
}
-
.md\:bui-pt-1\.5 {
padding-top: var(--bui-space-1_5);
}
-
.md\:bui-pt-2 {
padding-top: var(--bui-space-2);
}
-
.md\:bui-pt-3 {
padding-top: var(--bui-space-3);
}
-
.md\:bui-pt-4 {
padding-top: var(--bui-space-4);
}
-
.md\:bui-pt-5 {
padding-top: var(--bui-space-5);
}
-
.md\:bui-pt-6 {
padding-top: var(--bui-space-6);
}
-
.md\:bui-pt-7 {
padding-top: var(--bui-space-7);
}
-
.md\:bui-pt-8 {
padding-top: var(--bui-space-8);
}
-
.md\:bui-pt-9 {
padding-top: var(--bui-space-9);
}
-
.md\:bui-pt-10 {
padding-top: var(--bui-space-10);
}
-
.md\:bui-pt-11 {
padding-top: var(--bui-space-11);
}
-
.md\:bui-pt-12 {
padding-top: var(--bui-space-12);
}
-
.md\:bui-pt-13 {
padding-top: var(--bui-space-13);
}
-
.md\:bui-pt-14 {
padding-top: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-pt {
padding-top: var(--pt-lg);
}
-
.lg\:bui-pt-0\.5 {
padding-top: var(--bui-space-0_5);
}
-
.lg\:bui-pt-1 {
padding-top: var(--bui-space-1);
}
-
.lg\:bui-pt-1\.5 {
padding-top: var(--bui-space-1_5);
}
-
.lg\:bui-pt-2 {
padding-top: var(--bui-space-2);
}
-
.lg\:bui-pt-3 {
padding-top: var(--bui-space-3);
}
-
.lg\:bui-pt-4 {
padding-top: var(--bui-space-4);
}
-
.lg\:bui-pt-5 {
padding-top: var(--bui-space-5);
}
-
.lg\:bui-pt-6 {
padding-top: var(--bui-space-6);
}
-
.lg\:bui-pt-7 {
padding-top: var(--bui-space-7);
}
-
.lg\:bui-pt-8 {
padding-top: var(--bui-space-8);
}
-
.lg\:bui-pt-9 {
padding-top: var(--bui-space-9);
}
-
.lg\:bui-pt-10 {
padding-top: var(--bui-space-10);
}
-
.lg\:bui-pt-11 {
padding-top: var(--bui-space-11);
}
-
.lg\:bui-pt-12 {
padding-top: var(--bui-space-12);
}
-
.lg\:bui-pt-13 {
padding-top: var(--bui-space-13);
}
-
.lg\:bui-pt-14 {
padding-top: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-pt {
padding-top: var(--pt-xl);
}
-
.xl\:bui-pt-0\.5 {
padding-top: var(--bui-space-0_5);
}
-
.xl\:bui-pt-1 {
padding-top: var(--bui-space-1);
}
-
.xl\:bui-pt-1\.5 {
padding-top: var(--bui-space-1_5);
}
-
.xl\:bui-pt-2 {
padding-top: var(--bui-space-2);
}
-
.xl\:bui-pt-3 {
padding-top: var(--bui-space-3);
}
-
.xl\:bui-pt-4 {
padding-top: var(--bui-space-4);
}
-
.xl\:bui-pt-5 {
padding-top: var(--bui-space-5);
}
-
.xl\:bui-pt-6 {
padding-top: var(--bui-space-6);
}
-
.xl\:bui-pt-7 {
padding-top: var(--bui-space-7);
}
-
.xl\:bui-pt-8 {
padding-top: var(--bui-space-8);
}
-
.xl\:bui-pt-9 {
padding-top: var(--bui-space-9);
}
-
.xl\:bui-pt-10 {
padding-top: var(--bui-space-10);
}
-
.xl\:bui-pt-11 {
padding-top: var(--bui-space-11);
}
-
.xl\:bui-pt-12 {
padding-top: var(--bui-space-12);
}
-
.xl\:bui-pt-13 {
padding-top: var(--bui-space-13);
}
-
.xl\:bui-pt-14 {
padding-top: var(--bui-space-14);
}
}
-
.bui-pb {
padding-bottom: var(--pb);
}
-
.bui-pb-0\.5 {
padding-bottom: var(--bui-space-0_5);
}
-
.bui-pb-1 {
padding-bottom: var(--bui-space-1);
}
-
.bui-pb-1\.5 {
padding-bottom: var(--bui-space-1_5);
}
-
.bui-pb-2 {
padding-bottom: var(--bui-space-2);
}
-
.bui-pb-3 {
padding-bottom: var(--bui-space-3);
}
-
.bui-pb-4 {
padding-bottom: var(--bui-space-4);
}
-
.bui-pb-5 {
padding-bottom: var(--bui-space-5);
}
-
.bui-pb-6 {
padding-bottom: var(--bui-space-6);
}
-
.bui-pb-7 {
padding-bottom: var(--bui-space-7);
}
-
.bui-pb-8 {
padding-bottom: var(--bui-space-8);
}
-
.bui-pb-9 {
padding-bottom: var(--bui-space-9);
}
-
.bui-pb-10 {
padding-bottom: var(--bui-space-10);
}
-
.bui-pb-11 {
padding-bottom: var(--bui-space-11);
}
-
.bui-pb-12 {
padding-bottom: var(--bui-space-12);
}
-
.bui-pb-13 {
padding-bottom: var(--bui-space-13);
}
-
.bui-pb-14 {
padding-bottom: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-pb {
padding-bottom: var(--pb-xs);
}
-
.xs\:bui-pb-0\.5 {
padding-bottom: var(--bui-space-0_5);
}
-
.xs\:bui-pb-1 {
padding-bottom: var(--bui-space-1);
}
-
.xs\:bui-pb-1\.5 {
padding-bottom: var(--bui-space-1_5);
}
-
.xs\:bui-pb-2 {
padding-bottom: var(--bui-space-2);
}
-
.xs\:bui-pb-3 {
padding-bottom: var(--bui-space-3);
}
-
.xs\:bui-pb-4 {
padding-bottom: var(--bui-space-4);
}
-
.xs\:bui-pb-5 {
padding-bottom: var(--bui-space-5);
}
-
.xs\:bui-pb-6 {
padding-bottom: var(--bui-space-6);
}
-
.xs\:bui-pb-7 {
padding-bottom: var(--bui-space-7);
}
-
.xs\:bui-pb-8 {
padding-bottom: var(--bui-space-8);
}
-
.xs\:bui-pb-9 {
padding-bottom: var(--bui-space-9);
}
-
.xs\:bui-pb-10 {
padding-bottom: var(--bui-space-10);
}
-
.xs\:bui-pb-11 {
padding-bottom: var(--bui-space-11);
}
-
.xs\:bui-pb-12 {
padding-bottom: var(--bui-space-12);
}
-
.xs\:bui-pb-13 {
padding-bottom: var(--bui-space-13);
}
-
.xs\:bui-pb-14 {
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-pb {
padding-bottom: var(--pb-sm);
}
-
.sm\:bui-pb-0\.5 {
padding-bottom: var(--bui-space-0_5);
}
-
.sm\:bui-pb-1 {
padding-bottom: var(--bui-space-1);
}
-
.sm\:bui-pb-1\.5 {
padding-bottom: var(--bui-space-1_5);
}
-
.sm\:bui-pb-2 {
padding-bottom: var(--bui-space-2);
}
-
.sm\:bui-pb-3 {
padding-bottom: var(--bui-space-3);
}
-
.sm\:bui-pb-4 {
padding-bottom: var(--bui-space-4);
}
-
.sm\:bui-pb-5 {
padding-bottom: var(--bui-space-5);
}
-
.sm\:bui-pb-6 {
padding-bottom: var(--bui-space-6);
}
-
.sm\:bui-pb-7 {
padding-bottom: var(--bui-space-7);
}
-
.sm\:bui-pb-8 {
padding-bottom: var(--bui-space-8);
}
-
.sm\:bui-pb-9 {
padding-bottom: var(--bui-space-9);
}
-
.sm\:bui-pb-10 {
padding-bottom: var(--bui-space-10);
}
-
.sm\:bui-pb-11 {
padding-bottom: var(--bui-space-11);
}
-
.sm\:bui-pb-12 {
padding-bottom: var(--bui-space-12);
}
-
.sm\:bui-pb-13 {
padding-bottom: var(--bui-space-13);
}
-
.sm\:bui-pb-14 {
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-pb {
padding-bottom: var(--pb-md);
}
-
.md\:bui-pb-0\.5 {
padding-bottom: var(--bui-space-0_5);
}
-
.md\:bui-pb-1 {
padding-bottom: var(--bui-space-1);
}
-
.md\:bui-pb-1\.5 {
padding-bottom: var(--bui-space-1_5);
}
-
.md\:bui-pb-2 {
padding-bottom: var(--bui-space-2);
}
-
.md\:bui-pb-3 {
padding-bottom: var(--bui-space-3);
}
-
.md\:bui-pb-4 {
padding-bottom: var(--bui-space-4);
}
-
.md\:bui-pb-5 {
padding-bottom: var(--bui-space-5);
}
-
.md\:bui-pb-6 {
padding-bottom: var(--bui-space-6);
}
-
.md\:bui-pb-7 {
padding-bottom: var(--bui-space-7);
}
-
.md\:bui-pb-8 {
padding-bottom: var(--bui-space-8);
}
-
.md\:bui-pb-9 {
padding-bottom: var(--bui-space-9);
}
-
.md\:bui-pb-10 {
padding-bottom: var(--bui-space-10);
}
-
.md\:bui-pb-11 {
padding-bottom: var(--bui-space-11);
}
-
.md\:bui-pb-12 {
padding-bottom: var(--bui-space-12);
}
-
.md\:bui-pb-13 {
padding-bottom: var(--bui-space-13);
}
-
.md\:bui-pb-14 {
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-pb {
padding-bottom: var(--pb-lg);
}
-
.lg\:bui-pb-0\.5 {
padding-bottom: var(--bui-space-0_5);
}
-
.lg\:bui-pb-1 {
padding-bottom: var(--bui-space-1);
}
-
.lg\:bui-pb-1\.5 {
padding-bottom: var(--bui-space-1_5);
}
-
.lg\:bui-pb-2 {
padding-bottom: var(--bui-space-2);
}
-
.lg\:bui-pb-3 {
padding-bottom: var(--bui-space-3);
}
-
.lg\:bui-pb-4 {
padding-bottom: var(--bui-space-4);
}
-
.lg\:bui-pb-5 {
padding-bottom: var(--bui-space-5);
}
-
.lg\:bui-pb-6 {
padding-bottom: var(--bui-space-6);
}
-
.lg\:bui-pb-7 {
padding-bottom: var(--bui-space-7);
}
-
.lg\:bui-pb-8 {
padding-bottom: var(--bui-space-8);
}
-
.lg\:bui-pb-9 {
padding-bottom: var(--bui-space-9);
}
-
.lg\:bui-pb-10 {
padding-bottom: var(--bui-space-10);
}
-
.lg\:bui-pb-11 {
padding-bottom: var(--bui-space-11);
}
-
.lg\:bui-pb-12 {
padding-bottom: var(--bui-space-12);
}
-
.lg\:bui-pb-13 {
padding-bottom: var(--bui-space-13);
}
-
.lg\:bui-pb-14 {
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-pb {
padding-bottom: var(--pb-xl);
}
-
.xl\:bui-pb-0\.5 {
padding-bottom: var(--bui-space-0_5);
}
-
.xl\:bui-pb-1 {
padding-bottom: var(--bui-space-1);
}
-
.xl\:bui-pb-1\.5 {
padding-bottom: var(--bui-space-1_5);
}
-
.xl\:bui-pb-2 {
padding-bottom: var(--bui-space-2);
}
-
.xl\:bui-pb-3 {
padding-bottom: var(--bui-space-3);
}
-
.xl\:bui-pb-4 {
padding-bottom: var(--bui-space-4);
}
-
.xl\:bui-pb-5 {
padding-bottom: var(--bui-space-5);
}
-
.xl\:bui-pb-6 {
padding-bottom: var(--bui-space-6);
}
-
.xl\:bui-pb-7 {
padding-bottom: var(--bui-space-7);
}
-
.xl\:bui-pb-8 {
padding-bottom: var(--bui-space-8);
}
-
.xl\:bui-pb-9 {
padding-bottom: var(--bui-space-9);
}
-
.xl\:bui-pb-10 {
padding-bottom: var(--bui-space-10);
}
-
.xl\:bui-pb-11 {
padding-bottom: var(--bui-space-11);
}
-
.xl\:bui-pb-12 {
padding-bottom: var(--bui-space-12);
}
-
.xl\:bui-pb-13 {
padding-bottom: var(--bui-space-13);
}
-
.xl\:bui-pb-14 {
padding-bottom: var(--bui-space-14);
}
}
-
.bui-py {
padding-top: var(--py);
padding-bottom: var(--py);
}
-
.bui-py-0\.5 {
padding-top: var(--bui-space-0_5);
padding-bottom: var(--bui-space-0_5);
}
-
.bui-py-1 {
padding-top: var(--bui-space-1);
padding-bottom: var(--bui-space-1);
}
-
.bui-py-1\.5 {
padding-top: var(--bui-space-1_5);
padding-bottom: var(--bui-space-1_5);
}
-
.bui-py-2 {
padding-top: var(--bui-space-2);
padding-bottom: var(--bui-space-2);
}
-
.bui-py-3 {
padding-top: var(--bui-space-3);
padding-bottom: var(--bui-space-3);
}
-
.bui-py-4 {
padding-top: var(--bui-space-4);
padding-bottom: var(--bui-space-4);
}
-
.bui-py-5 {
padding-top: var(--bui-space-5);
padding-bottom: var(--bui-space-5);
}
-
.bui-py-6 {
padding-top: var(--bui-space-6);
padding-bottom: var(--bui-space-6);
}
-
.bui-py-7 {
padding-top: var(--bui-space-7);
padding-bottom: var(--bui-space-7);
}
-
.bui-py-8 {
padding-top: var(--bui-space-8);
padding-bottom: var(--bui-space-8);
}
-
.bui-py-9 {
padding-top: var(--bui-space-9);
padding-bottom: var(--bui-space-9);
}
-
.bui-py-10 {
padding-top: var(--bui-space-10);
padding-bottom: var(--bui-space-10);
}
-
.bui-py-11 {
padding-top: var(--bui-space-11);
padding-bottom: var(--bui-space-11);
}
-
.bui-py-12 {
padding-top: var(--bui-space-12);
padding-bottom: var(--bui-space-12);
}
-
.bui-py-13 {
padding-top: var(--bui-space-13);
padding-bottom: var(--bui-space-13);
}
-
.bui-py-14 {
padding-top: var(--bui-space-14);
padding-bottom: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-py {
padding-top: var(--py-xs);
padding-bottom: var(--py-xs);
}
-
.xs\:bui-py-0\.5 {
padding-top: var(--bui-space-0_5);
padding-bottom: var(--bui-space-0_5);
}
-
.xs\:bui-py-1 {
padding-top: var(--bui-space-1);
padding-bottom: var(--bui-space-1);
}
-
.xs\:bui-py-1\.5 {
padding-top: var(--bui-space-1_5);
padding-bottom: var(--bui-space-1_5);
}
-
.xs\:bui-py-2 {
padding-top: var(--bui-space-2);
padding-bottom: var(--bui-space-2);
}
-
.xs\:bui-py-3 {
padding-top: var(--bui-space-3);
padding-bottom: var(--bui-space-3);
}
-
.xs\:bui-py-4 {
padding-top: var(--bui-space-4);
padding-bottom: var(--bui-space-4);
}
-
.xs\:bui-py-5 {
padding-top: var(--bui-space-5);
padding-bottom: var(--bui-space-5);
}
-
.xs\:bui-py-6 {
padding-top: var(--bui-space-6);
padding-bottom: var(--bui-space-6);
}
-
.xs\:bui-py-7 {
padding-top: var(--bui-space-7);
padding-bottom: var(--bui-space-7);
}
-
.xs\:bui-py-8 {
padding-top: var(--bui-space-8);
padding-bottom: var(--bui-space-8);
}
-
.xs\:bui-py-9 {
padding-top: var(--bui-space-9);
padding-bottom: var(--bui-space-9);
}
-
.xs\:bui-py-10 {
padding-top: var(--bui-space-10);
padding-bottom: var(--bui-space-10);
}
-
.xs\:bui-py-11 {
padding-top: var(--bui-space-11);
padding-bottom: var(--bui-space-11);
}
-
.xs\:bui-py-12 {
padding-top: var(--bui-space-12);
padding-bottom: var(--bui-space-12);
}
-
.xs\:bui-py-13 {
padding-top: var(--bui-space-13);
padding-bottom: var(--bui-space-13);
}
-
.xs\:bui-py-14 {
padding-top: var(--bui-space-14);
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-py {
padding-top: var(--py-sm);
padding-bottom: var(--py-sm);
}
-
.sm\:bui-py-0\.5 {
padding-top: var(--bui-space-0_5);
padding-bottom: var(--bui-space-0_5);
}
-
.sm\:bui-py-1 {
padding-top: var(--bui-space-1);
padding-bottom: var(--bui-space-1);
}
-
.sm\:bui-py-1\.5 {
padding-top: var(--bui-space-1_5);
padding-bottom: var(--bui-space-1_5);
}
-
.sm\:bui-py-2 {
padding-top: var(--bui-space-2);
padding-bottom: var(--bui-space-2);
}
-
.sm\:bui-py-3 {
padding-top: var(--bui-space-3);
padding-bottom: var(--bui-space-3);
}
-
.sm\:bui-py-4 {
padding-top: var(--bui-space-4);
padding-bottom: var(--bui-space-4);
}
-
.sm\:bui-py-5 {
padding-top: var(--bui-space-5);
padding-bottom: var(--bui-space-5);
}
-
.sm\:bui-py-6 {
padding-top: var(--bui-space-6);
padding-bottom: var(--bui-space-6);
}
-
.sm\:bui-py-7 {
padding-top: var(--bui-space-7);
padding-bottom: var(--bui-space-7);
}
-
.sm\:bui-py-8 {
padding-top: var(--bui-space-8);
padding-bottom: var(--bui-space-8);
}
-
.sm\:bui-py-9 {
padding-top: var(--bui-space-9);
padding-bottom: var(--bui-space-9);
}
-
.sm\:bui-py-10 {
padding-top: var(--bui-space-10);
padding-bottom: var(--bui-space-10);
}
-
.sm\:bui-py-11 {
padding-top: var(--bui-space-11);
padding-bottom: var(--bui-space-11);
}
-
.sm\:bui-py-12 {
padding-top: var(--bui-space-12);
padding-bottom: var(--bui-space-12);
}
-
.sm\:bui-py-13 {
padding-top: var(--bui-space-13);
padding-bottom: var(--bui-space-13);
}
-
.sm\:bui-py-14 {
padding-top: var(--bui-space-14);
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-py {
padding-top: var(--py-md);
padding-bottom: var(--py-md);
}
-
.md\:bui-py-0\.5 {
padding-top: var(--bui-space-0_5);
padding-bottom: var(--bui-space-0_5);
}
-
.md\:bui-py-1 {
padding-top: var(--bui-space-1);
padding-bottom: var(--bui-space-1);
}
-
.md\:bui-py-1\.5 {
padding-top: var(--bui-space-1_5);
padding-bottom: var(--bui-space-1_5);
}
-
.md\:bui-py-2 {
padding-top: var(--bui-space-2);
padding-bottom: var(--bui-space-2);
}
-
.md\:bui-py-3 {
padding-top: var(--bui-space-3);
padding-bottom: var(--bui-space-3);
}
-
.md\:bui-py-4 {
padding-top: var(--bui-space-4);
padding-bottom: var(--bui-space-4);
}
-
.md\:bui-py-5 {
padding-top: var(--bui-space-5);
padding-bottom: var(--bui-space-5);
}
-
.md\:bui-py-6 {
padding-top: var(--bui-space-6);
padding-bottom: var(--bui-space-6);
}
-
.md\:bui-py-7 {
padding-top: var(--bui-space-7);
padding-bottom: var(--bui-space-7);
}
-
.md\:bui-py-8 {
padding-top: var(--bui-space-8);
padding-bottom: var(--bui-space-8);
}
-
.md\:bui-py-9 {
padding-top: var(--bui-space-9);
padding-bottom: var(--bui-space-9);
}
-
.md\:bui-py-10 {
padding-top: var(--bui-space-10);
padding-bottom: var(--bui-space-10);
}
-
.md\:bui-py-11 {
padding-top: var(--bui-space-11);
padding-bottom: var(--bui-space-11);
}
-
.md\:bui-py-12 {
padding-top: var(--bui-space-12);
padding-bottom: var(--bui-space-12);
}
-
.md\:bui-py-13 {
padding-top: var(--bui-space-13);
padding-bottom: var(--bui-space-13);
}
-
.md\:bui-py-14 {
padding-top: var(--bui-space-14);
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-py {
padding-top: var(--py-lg);
padding-bottom: var(--py-lg);
}
-
.lg\:bui-py-0\.5 {
padding-top: var(--bui-space-0_5);
padding-bottom: var(--bui-space-0_5);
}
-
.lg\:bui-py-1 {
padding-top: var(--bui-space-1);
padding-bottom: var(--bui-space-1);
}
-
.lg\:bui-py-1\.5 {
padding-top: var(--bui-space-1_5);
padding-bottom: var(--bui-space-1_5);
}
-
.lg\:bui-py-2 {
padding-top: var(--bui-space-2);
padding-bottom: var(--bui-space-2);
}
-
.lg\:bui-py-3 {
padding-top: var(--bui-space-3);
padding-bottom: var(--bui-space-3);
}
-
.lg\:bui-py-4 {
padding-top: var(--bui-space-4);
padding-bottom: var(--bui-space-4);
}
-
.lg\:bui-py-5 {
padding-top: var(--bui-space-5);
padding-bottom: var(--bui-space-5);
}
-
.lg\:bui-py-6 {
padding-top: var(--bui-space-6);
padding-bottom: var(--bui-space-6);
}
-
.lg\:bui-py-7 {
padding-top: var(--bui-space-7);
padding-bottom: var(--bui-space-7);
}
-
.lg\:bui-py-8 {
padding-top: var(--bui-space-8);
padding-bottom: var(--bui-space-8);
}
-
.lg\:bui-py-9 {
padding-top: var(--bui-space-9);
padding-bottom: var(--bui-space-9);
}
-
.lg\:bui-py-10 {
padding-top: var(--bui-space-10);
padding-bottom: var(--bui-space-10);
}
-
.lg\:bui-py-11 {
padding-top: var(--bui-space-11);
padding-bottom: var(--bui-space-11);
}
-
.lg\:bui-py-12 {
padding-top: var(--bui-space-12);
padding-bottom: var(--bui-space-12);
}
-
.lg\:bui-py-13 {
padding-top: var(--bui-space-13);
padding-bottom: var(--bui-space-13);
}
-
.lg\:bui-py-14 {
padding-top: var(--bui-space-14);
padding-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-py {
padding-top: var(--py-xl);
padding-bottom: var(--py-xl);
}
-
.xl\:bui-py-0\.5 {
padding-top: var(--bui-space-0_5);
padding-bottom: var(--bui-space-0_5);
}
-
.xl\:bui-py-1 {
padding-top: var(--bui-space-1);
padding-bottom: var(--bui-space-1);
}
-
.xl\:bui-py-1\.5 {
padding-top: var(--bui-space-1_5);
padding-bottom: var(--bui-space-1_5);
}
-
.xl\:bui-py-2 {
padding-top: var(--bui-space-2);
padding-bottom: var(--bui-space-2);
}
-
.xl\:bui-py-3 {
padding-top: var(--bui-space-3);
padding-bottom: var(--bui-space-3);
}
-
.xl\:bui-py-4 {
padding-top: var(--bui-space-4);
padding-bottom: var(--bui-space-4);
}
-
.xl\:bui-py-5 {
padding-top: var(--bui-space-5);
padding-bottom: var(--bui-space-5);
}
-
.xl\:bui-py-6 {
padding-top: var(--bui-space-6);
padding-bottom: var(--bui-space-6);
}
-
.xl\:bui-py-7 {
padding-top: var(--bui-space-7);
padding-bottom: var(--bui-space-7);
}
-
.xl\:bui-py-8 {
padding-top: var(--bui-space-8);
padding-bottom: var(--bui-space-8);
}
-
.xl\:bui-py-9 {
padding-top: var(--bui-space-9);
padding-bottom: var(--bui-space-9);
}
-
.xl\:bui-py-10 {
padding-top: var(--bui-space-10);
padding-bottom: var(--bui-space-10);
}
-
.xl\:bui-py-11 {
padding-top: var(--bui-space-11);
padding-bottom: var(--bui-space-11);
}
-
.xl\:bui-py-12 {
padding-top: var(--bui-space-12);
padding-bottom: var(--bui-space-12);
}
-
.xl\:bui-py-13 {
padding-top: var(--bui-space-13);
padding-bottom: var(--bui-space-13);
}
-
.xl\:bui-py-14 {
padding-top: var(--bui-space-14);
padding-bottom: var(--bui-space-14);
}
}
-
.bui-px {
padding-left: var(--px);
padding-right: var(--px);
}
-
.bui-px-0\.5 {
padding-left: var(--bui-space-0_5);
padding-right: var(--bui-space-0_5);
}
-
.bui-px-1 {
padding-left: var(--bui-space-1);
padding-right: var(--bui-space-1);
}
-
.bui-px-1\.5 {
padding-left: var(--bui-space-1_5);
padding-right: var(--bui-space-1_5);
}
-
.bui-px-2 {
padding-left: var(--bui-space-2);
padding-right: var(--bui-space-2);
}
-
.bui-px-3 {
padding-left: var(--bui-space-3);
padding-right: var(--bui-space-3);
}
-
.bui-px-4 {
padding-left: var(--bui-space-4);
padding-right: var(--bui-space-4);
}
-
.bui-px-5 {
padding-left: var(--bui-space-5);
padding-right: var(--bui-space-5);
}
-
.bui-px-6 {
padding-left: var(--bui-space-6);
padding-right: var(--bui-space-6);
}
-
.bui-px-7 {
padding-left: var(--bui-space-7);
padding-right: var(--bui-space-7);
}
-
.bui-px-8 {
padding-left: var(--bui-space-8);
padding-right: var(--bui-space-8);
}
-
.bui-px-9 {
padding-left: var(--bui-space-9);
padding-right: var(--bui-space-9);
}
-
.bui-px-10 {
padding-left: var(--bui-space-10);
padding-right: var(--bui-space-10);
}
-
.bui-px-11 {
padding-left: var(--bui-space-11);
padding-right: var(--bui-space-11);
}
-
.bui-px-12 {
padding-left: var(--bui-space-12);
padding-right: var(--bui-space-12);
}
-
.bui-px-13 {
padding-left: var(--bui-space-13);
padding-right: var(--bui-space-13);
}
-
.bui-px-14 {
padding-left: var(--bui-space-14);
padding-right: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-px {
padding-left: var(--px-xs);
padding-right: var(--px-xs);
}
-
.xs\:bui-px-0\.5 {
padding-left: var(--bui-space-0_5);
padding-right: var(--bui-space-0_5);
}
-
.xs\:bui-px-1 {
padding-left: var(--bui-space-1);
padding-right: var(--bui-space-1);
}
-
.xs\:bui-px-1\.5 {
padding-left: var(--bui-space-1_5);
padding-right: var(--bui-space-1_5);
}
-
.xs\:bui-px-2 {
padding-left: var(--bui-space-2);
padding-right: var(--bui-space-2);
}
-
.xs\:bui-px-3 {
padding-left: var(--bui-space-3);
padding-right: var(--bui-space-3);
}
-
.xs\:bui-px-4 {
padding-left: var(--bui-space-4);
padding-right: var(--bui-space-4);
}
-
.xs\:bui-px-5 {
padding-left: var(--bui-space-5);
padding-right: var(--bui-space-5);
}
-
.xs\:bui-px-6 {
padding-left: var(--bui-space-6);
padding-right: var(--bui-space-6);
}
-
.xs\:bui-px-7 {
padding-left: var(--bui-space-7);
padding-right: var(--bui-space-7);
}
-
.xs\:bui-px-8 {
padding-left: var(--bui-space-8);
padding-right: var(--bui-space-8);
}
-
.xs\:bui-px-9 {
padding-left: var(--bui-space-9);
padding-right: var(--bui-space-9);
}
-
.xs\:bui-px-10 {
padding-left: var(--bui-space-10);
padding-right: var(--bui-space-10);
}
-
.xs\:bui-px-11 {
padding-left: var(--bui-space-11);
padding-right: var(--bui-space-11);
}
-
.xs\:bui-px-12 {
padding-left: var(--bui-space-12);
padding-right: var(--bui-space-12);
}
-
.xs\:bui-px-13 {
padding-left: var(--bui-space-13);
padding-right: var(--bui-space-13);
}
-
.xs\:bui-px-14 {
padding-left: var(--bui-space-14);
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-px {
padding-left: var(--px-sm);
padding-right: var(--px-sm);
}
-
.sm\:bui-px-0\.5 {
padding-left: var(--bui-space-0_5);
padding-right: var(--bui-space-0_5);
}
-
.sm\:bui-px-1 {
padding-left: var(--bui-space-1);
padding-right: var(--bui-space-1);
}
-
.sm\:bui-px-1\.5 {
padding-left: var(--bui-space-1_5);
padding-right: var(--bui-space-1_5);
}
-
.sm\:bui-px-2 {
padding-left: var(--bui-space-2);
padding-right: var(--bui-space-2);
}
-
.sm\:bui-px-3 {
padding-left: var(--bui-space-3);
padding-right: var(--bui-space-3);
}
-
.sm\:bui-px-4 {
padding-left: var(--bui-space-4);
padding-right: var(--bui-space-4);
}
-
.sm\:bui-px-5 {
padding-left: var(--bui-space-5);
padding-right: var(--bui-space-5);
}
-
.sm\:bui-px-6 {
padding-left: var(--bui-space-6);
padding-right: var(--bui-space-6);
}
-
.sm\:bui-px-7 {
padding-left: var(--bui-space-7);
padding-right: var(--bui-space-7);
}
-
.sm\:bui-px-8 {
padding-left: var(--bui-space-8);
padding-right: var(--bui-space-8);
}
-
.sm\:bui-px-9 {
padding-left: var(--bui-space-9);
padding-right: var(--bui-space-9);
}
-
.sm\:bui-px-10 {
padding-left: var(--bui-space-10);
padding-right: var(--bui-space-10);
}
-
.sm\:bui-px-11 {
padding-left: var(--bui-space-11);
padding-right: var(--bui-space-11);
}
-
.sm\:bui-px-12 {
padding-left: var(--bui-space-12);
padding-right: var(--bui-space-12);
}
-
.sm\:bui-px-13 {
padding-left: var(--bui-space-13);
padding-right: var(--bui-space-13);
}
-
.sm\:bui-px-14 {
padding-left: var(--bui-space-14);
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-px {
padding-left: var(--px-md);
padding-right: var(--px-md);
}
-
.md\:bui-px-0\.5 {
padding-left: var(--bui-space-0_5);
padding-right: var(--bui-space-0_5);
}
-
.md\:bui-px-1 {
padding-left: var(--bui-space-1);
padding-right: var(--bui-space-1);
}
-
.md\:bui-px-1\.5 {
padding-left: var(--bui-space-1_5);
padding-right: var(--bui-space-1_5);
}
-
.md\:bui-px-2 {
padding-left: var(--bui-space-2);
padding-right: var(--bui-space-2);
}
-
.md\:bui-px-3 {
padding-left: var(--bui-space-3);
padding-right: var(--bui-space-3);
}
-
.md\:bui-px-4 {
padding-left: var(--bui-space-4);
padding-right: var(--bui-space-4);
}
-
.md\:bui-px-5 {
padding-left: var(--bui-space-5);
padding-right: var(--bui-space-5);
}
-
.md\:bui-px-6 {
padding-left: var(--bui-space-6);
padding-right: var(--bui-space-6);
}
-
.md\:bui-px-7 {
padding-left: var(--bui-space-7);
padding-right: var(--bui-space-7);
}
-
.md\:bui-px-8 {
padding-left: var(--bui-space-8);
padding-right: var(--bui-space-8);
}
-
.md\:bui-px-9 {
padding-left: var(--bui-space-9);
padding-right: var(--bui-space-9);
}
-
.md\:bui-px-10 {
padding-left: var(--bui-space-10);
padding-right: var(--bui-space-10);
}
-
.md\:bui-px-11 {
padding-left: var(--bui-space-11);
padding-right: var(--bui-space-11);
}
-
.md\:bui-px-12 {
padding-left: var(--bui-space-12);
padding-right: var(--bui-space-12);
}
-
.md\:bui-px-13 {
padding-left: var(--bui-space-13);
padding-right: var(--bui-space-13);
}
-
.md\:bui-px-14 {
padding-left: var(--bui-space-14);
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-px {
padding-left: var(--px-lg);
padding-right: var(--px-lg);
}
-
.lg\:bui-px-0\.5 {
padding-left: var(--bui-space-0_5);
padding-right: var(--bui-space-0_5);
}
-
.lg\:bui-px-1 {
padding-left: var(--bui-space-1);
padding-right: var(--bui-space-1);
}
-
.lg\:bui-px-1\.5 {
padding-left: var(--bui-space-1_5);
padding-right: var(--bui-space-1_5);
}
-
.lg\:bui-px-2 {
padding-left: var(--bui-space-2);
padding-right: var(--bui-space-2);
}
-
.lg\:bui-px-3 {
padding-left: var(--bui-space-3);
padding-right: var(--bui-space-3);
}
-
.lg\:bui-px-4 {
padding-left: var(--bui-space-4);
padding-right: var(--bui-space-4);
}
-
.lg\:bui-px-5 {
padding-left: var(--bui-space-5);
padding-right: var(--bui-space-5);
}
-
.lg\:bui-px-6 {
padding-left: var(--bui-space-6);
padding-right: var(--bui-space-6);
}
-
.lg\:bui-px-7 {
padding-left: var(--bui-space-7);
padding-right: var(--bui-space-7);
}
-
.lg\:bui-px-8 {
padding-left: var(--bui-space-8);
padding-right: var(--bui-space-8);
}
-
.lg\:bui-px-9 {
padding-left: var(--bui-space-9);
padding-right: var(--bui-space-9);
}
-
.lg\:bui-px-10 {
padding-left: var(--bui-space-10);
padding-right: var(--bui-space-10);
}
-
.lg\:bui-px-11 {
padding-left: var(--bui-space-11);
padding-right: var(--bui-space-11);
}
-
.lg\:bui-px-12 {
padding-left: var(--bui-space-12);
padding-right: var(--bui-space-12);
}
-
.lg\:bui-px-13 {
padding-left: var(--bui-space-13);
padding-right: var(--bui-space-13);
}
-
.lg\:bui-px-14 {
padding-left: var(--bui-space-14);
padding-right: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-px {
padding-left: var(--px-xl);
padding-right: var(--px-xl);
}
-
.xl\:bui-px-0\.5 {
padding-left: var(--bui-space-0_5);
padding-right: var(--bui-space-0_5);
}
-
.xl\:bui-px-1 {
padding-left: var(--bui-space-1);
padding-right: var(--bui-space-1);
}
-
.xl\:bui-px-1\.5 {
padding-left: var(--bui-space-1_5);
padding-right: var(--bui-space-1_5);
}
-
.xl\:bui-px-2 {
padding-left: var(--bui-space-2);
padding-right: var(--bui-space-2);
}
-
.xl\:bui-px-3 {
padding-left: var(--bui-space-3);
padding-right: var(--bui-space-3);
}
-
.xl\:bui-px-4 {
padding-left: var(--bui-space-4);
padding-right: var(--bui-space-4);
}
-
.xl\:bui-px-5 {
padding-left: var(--bui-space-5);
padding-right: var(--bui-space-5);
}
-
.xl\:bui-px-6 {
padding-left: var(--bui-space-6);
padding-right: var(--bui-space-6);
}
-
.xl\:bui-px-7 {
padding-left: var(--bui-space-7);
padding-right: var(--bui-space-7);
}
-
.xl\:bui-px-8 {
padding-left: var(--bui-space-8);
padding-right: var(--bui-space-8);
}
-
.xl\:bui-px-9 {
padding-left: var(--bui-space-9);
padding-right: var(--bui-space-9);
}
-
.xl\:bui-px-10 {
padding-left: var(--bui-space-10);
padding-right: var(--bui-space-10);
}
-
.xl\:bui-px-11 {
padding-left: var(--bui-space-11);
padding-right: var(--bui-space-11);
}
-
.xl\:bui-px-12 {
padding-left: var(--bui-space-12);
padding-right: var(--bui-space-12);
}
-
.xl\:bui-px-13 {
padding-left: var(--bui-space-13);
padding-right: var(--bui-space-13);
}
-
.xl\:bui-px-14 {
padding-left: var(--bui-space-14);
padding-right: var(--bui-space-14);
}
}
-
.bui-m {
margin: var(--m);
}
-
.bui-m-0\.5 {
margin: var(--bui-space-0_5);
}
-
.bui-m-1 {
margin: var(--bui-space-1);
}
-
.bui-m-1\.5 {
margin: var(--bui-space-1_5);
}
-
.bui-m-2 {
margin: var(--bui-space-2);
}
-
.bui-m-3 {
margin: var(--bui-space-3);
}
-
.bui-m-4 {
margin: var(--bui-space-4);
}
-
.bui-m-5 {
margin: var(--bui-space-5);
}
-
.bui-m-6 {
margin: var(--bui-space-6);
}
-
.bui-m-7 {
margin: var(--bui-space-7);
}
-
.bui-m-8 {
margin: var(--bui-space-8);
}
-
.bui-m-9 {
margin: var(--bui-space-9);
}
-
.bui-m-10 {
margin: var(--bui-space-10);
}
-
.bui-m-11 {
margin: var(--bui-space-11);
}
-
.bui-m-12 {
margin: var(--bui-space-12);
}
-
.bui-m-13 {
margin: var(--bui-space-13);
}
-
.bui-m-14 {
margin: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-m {
margin: var(--p-xs);
}
-
.xs\:bui-m-0\.5 {
margin: var(--bui-space-0_5);
}
-
.xs\:bui-m-1 {
margin: var(--bui-space-1);
}
-
.xs\:bui-m-1\.5 {
margin: var(--bui-space-1_5);
}
-
.xs\:bui-m-2 {
margin: var(--bui-space-2);
}
-
.xs\:bui-m-3 {
margin: var(--bui-space-3);
}
-
.xs\:bui-m-4 {
margin: var(--bui-space-4);
}
-
.xs\:bui-m-5 {
margin: var(--bui-space-5);
}
-
.xs\:bui-m-6 {
margin: var(--bui-space-6);
}
-
.xs\:bui-m-7 {
margin: var(--bui-space-7);
}
-
.xs\:bui-m-8 {
margin: var(--bui-space-8);
}
-
.xs\:bui-m-9 {
margin: var(--bui-space-9);
}
-
.xs\:bui-m-10 {
margin: var(--bui-space-10);
}
-
.xs\:bui-m-11 {
margin: var(--bui-space-11);
}
-
.xs\:bui-m-12 {
margin: var(--bui-space-12);
}
-
.xs\:bui-m-13 {
margin: var(--bui-space-13);
}
-
.xs\:bui-m-14 {
margin: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-m {
margin: var(--p-sm);
}
-
.sm\:bui-m-0\.5 {
margin: var(--bui-space-0_5);
}
-
.sm\:bui-m-1 {
margin: var(--bui-space-1);
}
-
.sm\:bui-m-1\.5 {
margin: var(--bui-space-1_5);
}
-
.sm\:bui-m-2 {
margin: var(--bui-space-2);
}
-
.sm\:bui-m-3 {
margin: var(--bui-space-3);
}
-
.sm\:bui-m-4 {
margin: var(--bui-space-4);
}
-
.sm\:bui-m-5 {
margin: var(--bui-space-5);
}
-
.sm\:bui-m-6 {
margin: var(--bui-space-6);
}
-
.sm\:bui-m-7 {
margin: var(--bui-space-7);
}
-
.sm\:bui-m-8 {
margin: var(--bui-space-8);
}
-
.sm\:bui-m-9 {
margin: var(--bui-space-9);
}
-
.sm\:bui-m-10 {
margin: var(--bui-space-10);
}
-
.sm\:bui-m-11 {
margin: var(--bui-space-11);
}
-
.sm\:bui-m-12 {
margin: var(--bui-space-12);
}
-
.sm\:bui-m-13 {
margin: var(--bui-space-13);
}
-
.sm\:bui-m-14 {
margin: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-m {
margin: var(--p-md);
}
-
.md\:bui-m-0\.5 {
margin: var(--bui-space-0_5);
}
-
.md\:bui-m-1 {
margin: var(--bui-space-1);
}
-
.md\:bui-m-1\.5 {
margin: var(--bui-space-1_5);
}
-
.md\:bui-m-2 {
margin: var(--bui-space-2);
}
-
.md\:bui-m-3 {
margin: var(--bui-space-3);
}
-
.md\:bui-m-4 {
margin: var(--bui-space-4);
}
-
.md\:bui-m-5 {
margin: var(--bui-space-5);
}
-
.md\:bui-m-6 {
margin: var(--bui-space-6);
}
-
.md\:bui-m-7 {
margin: var(--bui-space-7);
}
-
.md\:bui-m-8 {
margin: var(--bui-space-8);
}
-
.md\:bui-m-9 {
margin: var(--bui-space-9);
}
-
.md\:bui-m-10 {
margin: var(--bui-space-10);
}
-
.md\:bui-m-11 {
margin: var(--bui-space-11);
}
-
.md\:bui-m-12 {
margin: var(--bui-space-12);
}
-
.md\:bui-m-13 {
margin: var(--bui-space-13);
}
-
.md\:bui-m-14 {
margin: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-m {
margin: var(--p-lg);
}
-
.lg\:bui-m-0\.5 {
margin: var(--bui-space-0_5);
}
-
.lg\:bui-m-1 {
margin: var(--bui-space-1);
}
-
.lg\:bui-m-1\.5 {
margin: var(--bui-space-1_5);
}
-
.lg\:bui-m-2 {
margin: var(--bui-space-2);
}
-
.lg\:bui-m-3 {
margin: var(--bui-space-3);
}
-
.lg\:bui-m-4 {
margin: var(--bui-space-4);
}
-
.lg\:bui-m-5 {
margin: var(--bui-space-5);
}
-
.lg\:bui-m-6 {
margin: var(--bui-space-6);
}
-
.lg\:bui-m-7 {
margin: var(--bui-space-7);
}
-
.lg\:bui-m-8 {
margin: var(--bui-space-8);
}
-
.lg\:bui-m-9 {
margin: var(--bui-space-9);
}
-
.lg\:bui-m-10 {
margin: var(--bui-space-10);
}
-
.lg\:bui-m-11 {
margin: var(--bui-space-11);
}
-
.lg\:bui-m-12 {
margin: var(--bui-space-12);
}
-
.lg\:bui-m-13 {
margin: var(--bui-space-13);
}
-
.lg\:bui-m-14 {
margin: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-m {
margin: var(--p-xl);
}
-
.xl\:bui-m-0\.5 {
margin: var(--bui-space-0_5);
}
-
.xl\:bui-m-1 {
margin: var(--bui-space-1);
}
-
.xl\:bui-m-1\.5 {
margin: var(--bui-space-1_5);
}
-
.xl\:bui-m-2 {
margin: var(--bui-space-2);
}
-
.xl\:bui-m-3 {
margin: var(--bui-space-3);
}
-
.xl\:bui-m-4 {
margin: var(--bui-space-4);
}
-
.xl\:bui-m-5 {
margin: var(--bui-space-5);
}
-
.xl\:bui-m-6 {
margin: var(--bui-space-6);
}
-
.xl\:bui-m-7 {
margin: var(--bui-space-7);
}
-
.xl\:bui-m-8 {
margin: var(--bui-space-8);
}
-
.xl\:bui-m-9 {
margin: var(--bui-space-9);
}
-
.xl\:bui-m-10 {
margin: var(--bui-space-10);
}
-
.xl\:bui-m-11 {
margin: var(--bui-space-11);
}
-
.xl\:bui-m-12 {
margin: var(--bui-space-12);
}
-
.xl\:bui-m-13 {
margin: var(--bui-space-13);
}
-
.xl\:bui-m-14 {
margin: var(--bui-space-14);
}
}
-
.bui-ml {
margin-left: var(--ml);
}
-
.bui-ml-0\.5 {
margin-left: var(--bui-space-0_5);
}
-
.bui-ml-1 {
margin-left: var(--bui-space-1);
}
-
.bui-ml-1\.5 {
margin-left: var(--bui-space-1_5);
}
-
.bui-ml-2 {
margin-left: var(--bui-space-2);
}
-
.bui-ml-3 {
margin-left: var(--bui-space-3);
}
-
.bui-ml-4 {
margin-left: var(--bui-space-4);
}
-
.bui-ml-5 {
margin-left: var(--bui-space-5);
}
-
.bui-ml-6 {
margin-left: var(--bui-space-6);
}
-
.bui-ml-7 {
margin-left: var(--bui-space-7);
}
-
.bui-ml-8 {
margin-left: var(--bui-space-8);
}
-
.bui-ml-9 {
margin-left: var(--bui-space-9);
}
-
.bui-ml-10 {
margin-left: var(--bui-space-10);
}
-
.bui-ml-11 {
margin-left: var(--bui-space-11);
}
-
.bui-ml-12 {
margin-left: var(--bui-space-12);
}
-
.bui-ml-13 {
margin-left: var(--bui-space-13);
}
-
.bui-ml-14 {
margin-left: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-ml {
margin-left: var(--ml-xs);
}
-
.xs\:bui-ml-0\.5 {
margin-left: var(--bui-space-0_5);
}
-
.xs\:bui-ml-1 {
margin-left: var(--bui-space-1);
}
-
.xs\:bui-ml-1\.5 {
margin-left: var(--bui-space-1_5);
}
-
.xs\:bui-ml-2 {
margin-left: var(--bui-space-2);
}
-
.xs\:bui-ml-3 {
margin-left: var(--bui-space-3);
}
-
.xs\:bui-ml-4 {
margin-left: var(--bui-space-4);
}
-
.xs\:bui-ml-5 {
margin-left: var(--bui-space-5);
}
-
.xs\:bui-ml-6 {
margin-left: var(--bui-space-6);
}
-
.xs\:bui-ml-7 {
margin-left: var(--bui-space-7);
}
-
.xs\:bui-ml-8 {
margin-left: var(--bui-space-8);
}
-
.xs\:bui-ml-9 {
margin-left: var(--bui-space-9);
}
-
.xs\:bui-ml-10 {
margin-left: var(--bui-space-10);
}
-
.xs\:bui-ml-11 {
margin-left: var(--bui-space-11);
}
-
.xs\:bui-ml-12 {
margin-left: var(--bui-space-12);
}
-
.xs\:bui-ml-13 {
margin-left: var(--bui-space-13);
}
-
.xs\:bui-ml-14 {
margin-left: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-ml {
margin-left: var(--ml-sm);
}
-
.sm\:bui-ml-0\.5 {
margin-left: var(--bui-space-0_5);
}
-
.sm\:bui-ml-1 {
margin-left: var(--bui-space-1);
}
-
.sm\:bui-ml-1\.5 {
margin-left: var(--bui-space-1_5);
}
-
.sm\:bui-ml-2 {
margin-left: var(--bui-space-2);
}
-
.sm\:bui-ml-3 {
margin-left: var(--bui-space-3);
}
-
.sm\:bui-ml-4 {
margin-left: var(--bui-space-4);
}
-
.sm\:bui-ml-5 {
margin-left: var(--bui-space-5);
}
-
.sm\:bui-ml-6 {
margin-left: var(--bui-space-6);
}
-
.sm\:bui-ml-7 {
margin-left: var(--bui-space-7);
}
-
.sm\:bui-ml-8 {
margin-left: var(--bui-space-8);
}
-
.sm\:bui-ml-9 {
margin-left: var(--bui-space-9);
}
-
.sm\:bui-ml-10 {
margin-left: var(--bui-space-10);
}
-
.sm\:bui-ml-11 {
margin-left: var(--bui-space-11);
}
-
.sm\:bui-ml-12 {
margin-left: var(--bui-space-12);
}
-
.sm\:bui-ml-13 {
margin-left: var(--bui-space-13);
}
-
.sm\:bui-ml-14 {
margin-left: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-ml {
margin-left: var(--ml-md);
}
-
.md\:bui-ml-0\.5 {
margin-left: var(--bui-space-0_5);
}
-
.md\:bui-ml-1 {
margin-left: var(--bui-space-1);
}
-
.md\:bui-ml-1\.5 {
margin-left: var(--bui-space-1_5);
}
-
.md\:bui-ml-2 {
margin-left: var(--bui-space-2);
}
-
.md\:bui-ml-3 {
margin-left: var(--bui-space-3);
}
-
.md\:bui-ml-4 {
margin-left: var(--bui-space-4);
}
-
.md\:bui-ml-5 {
margin-left: var(--bui-space-5);
}
-
.md\:bui-ml-6 {
margin-left: var(--bui-space-6);
}
-
.md\:bui-ml-7 {
margin-left: var(--bui-space-7);
}
-
.md\:bui-ml-8 {
margin-left: var(--bui-space-8);
}
-
.md\:bui-ml-9 {
margin-left: var(--bui-space-9);
}
-
.md\:bui-ml-10 {
margin-left: var(--bui-space-10);
}
-
.md\:bui-ml-11 {
margin-left: var(--bui-space-11);
}
-
.md\:bui-ml-12 {
margin-left: var(--bui-space-12);
}
-
.md\:bui-ml-13 {
margin-left: var(--bui-space-13);
}
-
.md\:bui-ml-14 {
margin-left: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-ml {
margin-left: var(--ml-lg);
}
-
.lg\:bui-ml-0\.5 {
margin-left: var(--bui-space-0_5);
}
-
.lg\:bui-ml-1 {
margin-left: var(--bui-space-1);
}
-
.lg\:bui-ml-1\.5 {
margin-left: var(--bui-space-1_5);
}
-
.lg\:bui-ml-2 {
margin-left: var(--bui-space-2);
}
-
.lg\:bui-ml-3 {
margin-left: var(--bui-space-3);
}
-
.lg\:bui-ml-4 {
margin-left: var(--bui-space-4);
}
-
.lg\:bui-ml-5 {
margin-left: var(--bui-space-5);
}
-
.lg\:bui-ml-6 {
margin-left: var(--bui-space-6);
}
-
.lg\:bui-ml-7 {
margin-left: var(--bui-space-7);
}
-
.lg\:bui-ml-8 {
margin-left: var(--bui-space-8);
}
-
.lg\:bui-ml-9 {
margin-left: var(--bui-space-9);
}
-
.lg\:bui-ml-10 {
margin-left: var(--bui-space-10);
}
-
.lg\:bui-ml-11 {
margin-left: var(--bui-space-11);
}
-
.lg\:bui-ml-12 {
margin-left: var(--bui-space-12);
}
-
.lg\:bui-ml-13 {
margin-left: var(--bui-space-13);
}
-
.lg\:bui-ml-14 {
margin-left: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-ml {
margin-left: var(--ml-xl);
}
-
.xl\:bui-ml-0\.5 {
margin-left: var(--bui-space-0_5);
}
-
.xl\:bui-ml-1 {
margin-left: var(--bui-space-1);
}
-
.xl\:bui-ml-1\.5 {
margin-left: var(--bui-space-1_5);
}
-
.xl\:bui-ml-2 {
margin-left: var(--bui-space-2);
}
-
.xl\:bui-ml-3 {
margin-left: var(--bui-space-3);
}
-
.xl\:bui-ml-4 {
margin-left: var(--bui-space-4);
}
-
.xl\:bui-ml-5 {
margin-left: var(--bui-space-5);
}
-
.xl\:bui-ml-6 {
margin-left: var(--bui-space-6);
}
-
.xl\:bui-ml-7 {
margin-left: var(--bui-space-7);
}
-
.xl\:bui-ml-8 {
margin-left: var(--bui-space-8);
}
-
.xl\:bui-ml-9 {
margin-left: var(--bui-space-9);
}
-
.xl\:bui-ml-10 {
margin-left: var(--bui-space-10);
}
-
.xl\:bui-ml-11 {
margin-left: var(--bui-space-11);
}
-
.xl\:bui-ml-12 {
margin-left: var(--bui-space-12);
}
-
.xl\:bui-ml-13 {
margin-left: var(--bui-space-13);
}
-
.xl\:bui-ml-14 {
margin-left: var(--bui-space-14);
}
}
-
.bui-mr {
margin-right: var(--mr);
}
-
.bui-mr-0\.5 {
margin-right: var(--bui-space-0_5);
}
-
.bui-mr-1 {
margin-right: var(--bui-space-1);
}
-
.bui-mr-1\.5 {
margin-right: var(--bui-space-1_5);
}
-
.bui-mr-2 {
margin-right: var(--bui-space-2);
}
-
.bui-mr-3 {
margin-right: var(--bui-space-3);
}
-
.bui-mr-4 {
margin-right: var(--bui-space-4);
}
-
.bui-mr-5 {
margin-right: var(--bui-space-5);
}
-
.bui-mr-6 {
margin-right: var(--bui-space-6);
}
-
.bui-mr-7 {
margin-right: var(--bui-space-7);
}
-
.bui-mr-8 {
margin-right: var(--bui-space-8);
}
-
.bui-mr-9 {
margin-right: var(--bui-space-9);
}
-
.bui-mr-10 {
margin-right: var(--bui-space-10);
}
-
.bui-mr-11 {
margin-right: var(--bui-space-11);
}
-
.bui-mr-12 {
margin-right: var(--bui-space-12);
}
-
.bui-mr-13 {
margin-right: var(--bui-space-13);
}
-
.bui-mr-14 {
margin-right: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-mr {
margin-right: var(--mr-xs);
}
-
.xs\:bui-mr-0\.5 {
margin-right: var(--bui-space-0_5);
}
-
.xs\:bui-mr-1 {
margin-right: var(--bui-space-1);
}
-
.xs\:bui-mr-1\.5 {
margin-right: var(--bui-space-1_5);
}
-
.xs\:bui-mr-2 {
margin-right: var(--bui-space-2);
}
-
.xs\:bui-mr-3 {
margin-right: var(--bui-space-3);
}
-
.xs\:bui-mr-4 {
margin-right: var(--bui-space-4);
}
-
.xs\:bui-mr-5 {
margin-right: var(--bui-space-5);
}
-
.xs\:bui-mr-6 {
margin-right: var(--bui-space-6);
}
-
.xs\:bui-mr-7 {
margin-right: var(--bui-space-7);
}
-
.xs\:bui-mr-8 {
margin-right: var(--bui-space-8);
}
-
.xs\:bui-mr-9 {
margin-right: var(--bui-space-9);
}
-
.xs\:bui-mr-10 {
margin-right: var(--bui-space-10);
}
-
.xs\:bui-mr-11 {
margin-right: var(--bui-space-11);
}
-
.xs\:bui-mr-12 {
margin-right: var(--bui-space-12);
}
-
.xs\:bui-mr-13 {
margin-right: var(--bui-space-13);
}
-
.xs\:bui-mr-14 {
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-mr {
margin-right: var(--mr-sm);
}
-
.sm\:bui-mr-0\.5 {
margin-right: var(--bui-space-0_5);
}
-
.sm\:bui-mr-1 {
margin-right: var(--bui-space-1);
}
-
.sm\:bui-mr-1\.5 {
margin-right: var(--bui-space-1_5);
}
-
.sm\:bui-mr-2 {
margin-right: var(--bui-space-2);
}
-
.sm\:bui-mr-3 {
margin-right: var(--bui-space-3);
}
-
.sm\:bui-mr-4 {
margin-right: var(--bui-space-4);
}
-
.sm\:bui-mr-5 {
margin-right: var(--bui-space-5);
}
-
.sm\:bui-mr-6 {
margin-right: var(--bui-space-6);
}
-
.sm\:bui-mr-7 {
margin-right: var(--bui-space-7);
}
-
.sm\:bui-mr-8 {
margin-right: var(--bui-space-8);
}
-
.sm\:bui-mr-9 {
margin-right: var(--bui-space-9);
}
-
.sm\:bui-mr-10 {
margin-right: var(--bui-space-10);
}
-
.sm\:bui-mr-11 {
margin-right: var(--bui-space-11);
}
-
.sm\:bui-mr-12 {
margin-right: var(--bui-space-12);
}
-
.sm\:bui-mr-13 {
margin-right: var(--bui-space-13);
}
-
.sm\:bui-mr-14 {
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-mr {
margin-right: var(--mr-md);
}
-
.md\:bui-mr-0\.5 {
margin-right: var(--bui-space-0_5);
}
-
.md\:bui-mr-1 {
margin-right: var(--bui-space-1);
}
-
.md\:bui-mr-1\.5 {
margin-right: var(--bui-space-1_5);
}
-
.md\:bui-mr-2 {
margin-right: var(--bui-space-2);
}
-
.md\:bui-mr-3 {
margin-right: var(--bui-space-3);
}
-
.md\:bui-mr-4 {
margin-right: var(--bui-space-4);
}
-
.md\:bui-mr-5 {
margin-right: var(--bui-space-5);
}
-
.md\:bui-mr-6 {
margin-right: var(--bui-space-6);
}
-
.md\:bui-mr-7 {
margin-right: var(--bui-space-7);
}
-
.md\:bui-mr-8 {
margin-right: var(--bui-space-8);
}
-
.md\:bui-mr-9 {
margin-right: var(--bui-space-9);
}
-
.md\:bui-mr-10 {
margin-right: var(--bui-space-10);
}
-
.md\:bui-mr-11 {
margin-right: var(--bui-space-11);
}
-
.md\:bui-mr-12 {
margin-right: var(--bui-space-12);
}
-
.md\:bui-mr-13 {
margin-right: var(--bui-space-13);
}
-
.md\:bui-mr-14 {
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-mr {
margin-right: var(--mr-lg);
}
-
.lg\:bui-mr-0\.5 {
margin-right: var(--bui-space-0_5);
}
-
.lg\:bui-mr-1 {
margin-right: var(--bui-space-1);
}
-
.lg\:bui-mr-1\.5 {
margin-right: var(--bui-space-1_5);
}
-
.lg\:bui-mr-2 {
margin-right: var(--bui-space-2);
}
-
.lg\:bui-mr-3 {
margin-right: var(--bui-space-3);
}
-
.lg\:bui-mr-4 {
margin-right: var(--bui-space-4);
}
-
.lg\:bui-mr-5 {
margin-right: var(--bui-space-5);
}
-
.lg\:bui-mr-6 {
margin-right: var(--bui-space-6);
}
-
.lg\:bui-mr-7 {
margin-right: var(--bui-space-7);
}
-
.lg\:bui-mr-8 {
margin-right: var(--bui-space-8);
}
-
.lg\:bui-mr-9 {
margin-right: var(--bui-space-9);
}
-
.lg\:bui-mr-10 {
margin-right: var(--bui-space-10);
}
-
.lg\:bui-mr-11 {
margin-right: var(--bui-space-11);
}
-
.lg\:bui-mr-12 {
margin-right: var(--bui-space-12);
}
-
.lg\:bui-mr-13 {
margin-right: var(--bui-space-13);
}
-
.lg\:bui-mr-14 {
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-mr {
margin-right: var(--mr-xl);
}
-
.xl\:bui-mr-0\.5 {
margin-right: var(--bui-space-0_5);
}
-
.xl\:bui-mr-1 {
margin-right: var(--bui-space-1);
}
-
.xl\:bui-mr-1\.5 {
margin-right: var(--bui-space-1_5);
}
-
.xl\:bui-mr-2 {
margin-right: var(--bui-space-2);
}
-
.xl\:bui-mr-3 {
margin-right: var(--bui-space-3);
}
-
.xl\:bui-mr-4 {
margin-right: var(--bui-space-4);
}
-
.xl\:bui-mr-5 {
margin-right: var(--bui-space-5);
}
-
.xl\:bui-mr-6 {
margin-right: var(--bui-space-6);
}
-
.xl\:bui-mr-7 {
margin-right: var(--bui-space-7);
}
-
.xl\:bui-mr-8 {
margin-right: var(--bui-space-8);
}
-
.xl\:bui-mr-9 {
margin-right: var(--bui-space-9);
}
-
.xl\:bui-mr-10 {
margin-right: var(--bui-space-10);
}
-
.xl\:bui-mr-11 {
margin-right: var(--bui-space-11);
}
-
.xl\:bui-mr-12 {
margin-right: var(--bui-space-12);
}
-
.xl\:bui-mr-13 {
margin-right: var(--bui-space-13);
}
-
.xl\:bui-mr-14 {
margin-right: var(--bui-space-14);
}
}
-
.bui-mt {
margin-top: var(--mt);
}
-
.bui-mt-0\.5 {
margin-top: var(--bui-space-0_5);
}
-
.bui-mt-1 {
margin-top: var(--bui-space-1);
}
-
.bui-mt-1\.5 {
margin-top: var(--bui-space-1_5);
}
-
.bui-mt-2 {
margin-top: var(--bui-space-2);
}
-
.bui-mt-3 {
margin-top: var(--bui-space-3);
}
-
.bui-mt-4 {
margin-top: var(--bui-space-4);
}
-
.bui-mt-5 {
margin-top: var(--bui-space-5);
}
-
.bui-mt-6 {
margin-top: var(--bui-space-6);
}
-
.bui-mt-7 {
margin-top: var(--bui-space-7);
}
-
.bui-mt-8 {
margin-top: var(--bui-space-8);
}
-
.bui-mt-9 {
margin-top: var(--bui-space-9);
}
-
.bui-mt-10 {
margin-top: var(--bui-space-10);
}
-
.bui-mt-11 {
margin-top: var(--bui-space-11);
}
-
.bui-mt-12 {
margin-top: var(--bui-space-12);
}
-
.bui-mt-13 {
margin-top: var(--bui-space-13);
}
-
.bui-mt-14 {
margin-top: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-mt {
margin-top: var(--mt-xs);
}
-
.xs\:bui-mt-0\.5 {
margin-top: var(--bui-space-0_5);
}
-
.xs\:bui-mt-1 {
margin-top: var(--bui-space-1);
}
-
.xs\:bui-mt-1\.5 {
margin-top: var(--bui-space-1_5);
}
-
.xs\:bui-mt-2 {
margin-top: var(--bui-space-2);
}
-
.xs\:bui-mt-3 {
margin-top: var(--bui-space-3);
}
-
.xs\:bui-mt-4 {
margin-top: var(--bui-space-4);
}
-
.xs\:bui-mt-5 {
margin-top: var(--bui-space-5);
}
-
.xs\:bui-mt-6 {
margin-top: var(--bui-space-6);
}
-
.xs\:bui-mt-7 {
margin-top: var(--bui-space-7);
}
-
.xs\:bui-mt-8 {
margin-top: var(--bui-space-8);
}
-
.xs\:bui-mt-9 {
margin-top: var(--bui-space-9);
}
-
.xs\:bui-mt-10 {
margin-top: var(--bui-space-10);
}
-
.xs\:bui-mt-11 {
margin-top: var(--bui-space-11);
}
-
.xs\:bui-mt-12 {
margin-top: var(--bui-space-12);
}
-
.xs\:bui-mt-13 {
margin-top: var(--bui-space-13);
}
-
.xs\:bui-mt-14 {
margin-top: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-mt {
margin-top: var(--mt-sm);
}
-
.sm\:bui-mt-0\.5 {
margin-top: var(--bui-space-0_5);
}
-
.sm\:bui-mt-1 {
margin-top: var(--bui-space-1);
}
-
.sm\:bui-mt-1\.5 {
margin-top: var(--bui-space-1_5);
}
-
.sm\:bui-mt-2 {
margin-top: var(--bui-space-2);
}
-
.sm\:bui-mt-3 {
margin-top: var(--bui-space-3);
}
-
.sm\:bui-mt-4 {
margin-top: var(--bui-space-4);
}
-
.sm\:bui-mt-5 {
margin-top: var(--bui-space-5);
}
-
.sm\:bui-mt-6 {
margin-top: var(--bui-space-6);
}
-
.sm\:bui-mt-7 {
margin-top: var(--bui-space-7);
}
-
.sm\:bui-mt-8 {
margin-top: var(--bui-space-8);
}
-
.sm\:bui-mt-9 {
margin-top: var(--bui-space-9);
}
-
.sm\:bui-mt-10 {
margin-top: var(--bui-space-10);
}
-
.sm\:bui-mt-11 {
margin-top: var(--bui-space-11);
}
-
.sm\:bui-mt-12 {
margin-top: var(--bui-space-12);
}
-
.sm\:bui-mt-13 {
margin-top: var(--bui-space-13);
}
-
.sm\:bui-mt-14 {
margin-top: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-mt {
margin-top: var(--mt-md);
}
-
.md\:bui-mt-0\.5 {
margin-top: var(--bui-space-0_5);
}
-
.md\:bui-mt-1 {
margin-top: var(--bui-space-1);
}
-
.md\:bui-mt-1\.5 {
margin-top: var(--bui-space-1_5);
}
-
.md\:bui-mt-2 {
margin-top: var(--bui-space-2);
}
-
.md\:bui-mt-3 {
margin-top: var(--bui-space-3);
}
-
.md\:bui-mt-4 {
margin-top: var(--bui-space-4);
}
-
.md\:bui-mt-5 {
margin-top: var(--bui-space-5);
}
-
.md\:bui-mt-6 {
margin-top: var(--bui-space-6);
}
-
.md\:bui-mt-7 {
margin-top: var(--bui-space-7);
}
-
.md\:bui-mt-8 {
margin-top: var(--bui-space-8);
}
-
.md\:bui-mt-9 {
margin-top: var(--bui-space-9);
}
-
.md\:bui-mt-10 {
margin-top: var(--bui-space-10);
}
-
.md\:bui-mt-11 {
margin-top: var(--bui-space-11);
}
-
.md\:bui-mt-12 {
margin-top: var(--bui-space-12);
}
-
.md\:bui-mt-13 {
margin-top: var(--bui-space-13);
}
-
.md\:bui-mt-14 {
margin-top: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-mt {
margin-top: var(--mt-lg);
}
-
.lg\:bui-mt-0\.5 {
margin-top: var(--bui-space-0_5);
}
-
.lg\:bui-mt-1 {
margin-top: var(--bui-space-1);
}
-
.lg\:bui-mt-1\.5 {
margin-top: var(--bui-space-1_5);
}
-
.lg\:bui-mt-2 {
margin-top: var(--bui-space-2);
}
-
.lg\:bui-mt-3 {
margin-top: var(--bui-space-3);
}
-
.lg\:bui-mt-4 {
margin-top: var(--bui-space-4);
}
-
.lg\:bui-mt-5 {
margin-top: var(--bui-space-5);
}
-
.lg\:bui-mt-6 {
margin-top: var(--bui-space-6);
}
-
.lg\:bui-mt-7 {
margin-top: var(--bui-space-7);
}
-
.lg\:bui-mt-8 {
margin-top: var(--bui-space-8);
}
-
.lg\:bui-mt-9 {
margin-top: var(--bui-space-9);
}
-
.lg\:bui-mt-10 {
margin-top: var(--bui-space-10);
}
-
.lg\:bui-mt-11 {
margin-top: var(--bui-space-11);
}
-
.lg\:bui-mt-12 {
margin-top: var(--bui-space-12);
}
-
.lg\:bui-mt-13 {
margin-top: var(--bui-space-13);
}
-
.lg\:bui-mt-14 {
margin-top: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-mt {
margin-top: var(--mt-xl);
}
-
.xl\:bui-mt-0\.5 {
margin-top: var(--bui-space-0_5);
}
-
.xl\:bui-mt-1 {
margin-top: var(--bui-space-1);
}
-
.xl\:bui-mt-1\.5 {
margin-top: var(--bui-space-1_5);
}
-
.xl\:bui-mt-2 {
margin-top: var(--bui-space-2);
}
-
.xl\:bui-mt-3 {
margin-top: var(--bui-space-3);
}
-
.xl\:bui-mt-4 {
margin-top: var(--bui-space-4);
}
-
.xl\:bui-mt-5 {
margin-top: var(--bui-space-5);
}
-
.xl\:bui-mt-6 {
margin-top: var(--bui-space-6);
}
-
.xl\:bui-mt-7 {
margin-top: var(--bui-space-7);
}
-
.xl\:bui-mt-8 {
margin-top: var(--bui-space-8);
}
-
.xl\:bui-mt-9 {
margin-top: var(--bui-space-9);
}
-
.xl\:bui-mt-10 {
margin-top: var(--bui-space-10);
}
-
.xl\:bui-mt-11 {
margin-top: var(--bui-space-11);
}
-
.xl\:bui-mt-12 {
margin-top: var(--bui-space-12);
}
-
.xl\:bui-mt-13 {
margin-top: var(--bui-space-13);
}
-
.xl\:bui-mt-14 {
margin-top: var(--bui-space-14);
}
}
-
.bui-mb {
margin-bottom: var(--mb);
}
-
.bui-mb-0\.5 {
margin-bottom: var(--bui-space-0_5);
}
-
.bui-mb-1 {
margin-bottom: var(--bui-space-1);
}
-
.bui-mb-1\.5 {
margin-bottom: var(--bui-space-1_5);
}
-
.bui-mb-2 {
margin-bottom: var(--bui-space-2);
}
-
.bui-mb-3 {
margin-bottom: var(--bui-space-3);
}
-
.bui-mb-4 {
margin-bottom: var(--bui-space-4);
}
-
.bui-mb-5 {
margin-bottom: var(--bui-space-5);
}
-
.bui-mb-6 {
margin-bottom: var(--bui-space-6);
}
-
.bui-mb-7 {
margin-bottom: var(--bui-space-7);
}
-
.bui-mb-8 {
margin-bottom: var(--bui-space-8);
}
-
.bui-mb-9 {
margin-bottom: var(--bui-space-9);
}
-
.bui-mb-10 {
margin-bottom: var(--bui-space-10);
}
-
.bui-mb-11 {
margin-bottom: var(--bui-space-11);
}
-
.bui-mb-12 {
margin-bottom: var(--bui-space-12);
}
-
.bui-mb-13 {
margin-bottom: var(--bui-space-13);
}
-
.bui-mb-14 {
margin-bottom: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-mb {
margin-bottom: var(--mb-xs);
}
-
.xs\:bui-mb-0\.5 {
margin-bottom: var(--bui-space-0_5);
}
-
.xs\:bui-mb-1 {
margin-bottom: var(--bui-space-1);
}
-
.xs\:bui-mb-1\.5 {
margin-bottom: var(--bui-space-1_5);
}
-
.xs\:bui-mb-2 {
margin-bottom: var(--bui-space-2);
}
-
.xs\:bui-mb-3 {
margin-bottom: var(--bui-space-3);
}
-
.xs\:bui-mb-4 {
margin-bottom: var(--bui-space-4);
}
-
.xs\:bui-mb-5 {
margin-bottom: var(--bui-space-5);
}
-
.xs\:bui-mb-6 {
margin-bottom: var(--bui-space-6);
}
-
.xs\:bui-mb-7 {
margin-bottom: var(--bui-space-7);
}
-
.xs\:bui-mb-8 {
margin-bottom: var(--bui-space-8);
}
-
.xs\:bui-mb-9 {
margin-bottom: var(--bui-space-9);
}
-
.xs\:bui-mb-10 {
margin-bottom: var(--bui-space-10);
}
-
.xs\:bui-mb-11 {
margin-bottom: var(--bui-space-11);
}
-
.xs\:bui-mb-12 {
margin-bottom: var(--bui-space-12);
}
-
.xs\:bui-mb-13 {
margin-bottom: var(--bui-space-13);
}
-
.xs\:bui-mb-14 {
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-mb {
margin-bottom: var(--mb-sm);
}
-
.sm\:bui-mb-0\.5 {
margin-bottom: var(--bui-space-0_5);
}
-
.sm\:bui-mb-1 {
margin-bottom: var(--bui-space-1);
}
-
.sm\:bui-mb-1\.5 {
margin-bottom: var(--bui-space-1_5);
}
-
.sm\:bui-mb-2 {
margin-bottom: var(--bui-space-2);
}
-
.sm\:bui-mb-3 {
margin-bottom: var(--bui-space-3);
}
-
.sm\:bui-mb-4 {
margin-bottom: var(--bui-space-4);
}
-
.sm\:bui-mb-5 {
margin-bottom: var(--bui-space-5);
}
-
.sm\:bui-mb-6 {
margin-bottom: var(--bui-space-6);
}
-
.sm\:bui-mb-7 {
margin-bottom: var(--bui-space-7);
}
-
.sm\:bui-mb-8 {
margin-bottom: var(--bui-space-8);
}
-
.sm\:bui-mb-9 {
margin-bottom: var(--bui-space-9);
}
-
.sm\:bui-mb-10 {
margin-bottom: var(--bui-space-10);
}
-
.sm\:bui-mb-11 {
margin-bottom: var(--bui-space-11);
}
-
.sm\:bui-mb-12 {
margin-bottom: var(--bui-space-12);
}
-
.sm\:bui-mb-13 {
margin-bottom: var(--bui-space-13);
}
-
.sm\:bui-mb-14 {
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-mb {
margin-bottom: var(--mb-md);
}
-
.md\:bui-mb-0\.5 {
margin-bottom: var(--bui-space-0_5);
}
-
.md\:bui-mb-1 {
margin-bottom: var(--bui-space-1);
}
-
.md\:bui-mb-1\.5 {
margin-bottom: var(--bui-space-1_5);
}
-
.md\:bui-mb-2 {
margin-bottom: var(--bui-space-2);
}
-
.md\:bui-mb-3 {
margin-bottom: var(--bui-space-3);
}
-
.md\:bui-mb-4 {
margin-bottom: var(--bui-space-4);
}
-
.md\:bui-mb-5 {
margin-bottom: var(--bui-space-5);
}
-
.md\:bui-mb-6 {
margin-bottom: var(--bui-space-6);
}
-
.md\:bui-mb-7 {
margin-bottom: var(--bui-space-7);
}
-
.md\:bui-mb-8 {
margin-bottom: var(--bui-space-8);
}
-
.md\:bui-mb-9 {
margin-bottom: var(--bui-space-9);
}
-
.md\:bui-mb-10 {
margin-bottom: var(--bui-space-10);
}
-
.md\:bui-mb-11 {
margin-bottom: var(--bui-space-11);
}
-
.md\:bui-mb-12 {
margin-bottom: var(--bui-space-12);
}
-
.md\:bui-mb-13 {
margin-bottom: var(--bui-space-13);
}
-
.md\:bui-mb-14 {
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-mb {
margin-bottom: var(--mb-lg);
}
-
.lg\:bui-mb-0\.5 {
margin-bottom: var(--bui-space-0_5);
}
-
.lg\:bui-mb-1 {
margin-bottom: var(--bui-space-1);
}
-
.lg\:bui-mb-1\.5 {
margin-bottom: var(--bui-space-1_5);
}
-
.lg\:bui-mb-2 {
margin-bottom: var(--bui-space-2);
}
-
.lg\:bui-mb-3 {
margin-bottom: var(--bui-space-3);
}
-
.lg\:bui-mb-4 {
margin-bottom: var(--bui-space-4);
}
-
.lg\:bui-mb-5 {
margin-bottom: var(--bui-space-5);
}
-
.lg\:bui-mb-6 {
margin-bottom: var(--bui-space-6);
}
-
.lg\:bui-mb-7 {
margin-bottom: var(--bui-space-7);
}
-
.lg\:bui-mb-8 {
margin-bottom: var(--bui-space-8);
}
-
.lg\:bui-mb-9 {
margin-bottom: var(--bui-space-9);
}
-
.lg\:bui-mb-10 {
margin-bottom: var(--bui-space-10);
}
-
.lg\:bui-mb-11 {
margin-bottom: var(--bui-space-11);
}
-
.lg\:bui-mb-12 {
margin-bottom: var(--bui-space-12);
}
-
.lg\:bui-mb-13 {
margin-bottom: var(--bui-space-13);
}
-
.lg\:bui-mb-14 {
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-mb {
margin-bottom: var(--mb-xl);
}
-
.xl\:bui-mb-0\.5 {
margin-bottom: var(--bui-space-0_5);
}
-
.xl\:bui-mb-1 {
margin-bottom: var(--bui-space-1);
}
-
.xl\:bui-mb-1\.5 {
margin-bottom: var(--bui-space-1_5);
}
-
.xl\:bui-mb-2 {
margin-bottom: var(--bui-space-2);
}
-
.xl\:bui-mb-3 {
margin-bottom: var(--bui-space-3);
}
-
.xl\:bui-mb-4 {
margin-bottom: var(--bui-space-4);
}
-
.xl\:bui-mb-5 {
margin-bottom: var(--bui-space-5);
}
-
.xl\:bui-mb-6 {
margin-bottom: var(--bui-space-6);
}
-
.xl\:bui-mb-7 {
margin-bottom: var(--bui-space-7);
}
-
.xl\:bui-mb-8 {
margin-bottom: var(--bui-space-8);
}
-
.xl\:bui-mb-9 {
margin-bottom: var(--bui-space-9);
}
-
.xl\:bui-mb-10 {
margin-bottom: var(--bui-space-10);
}
-
.xl\:bui-mb-11 {
margin-bottom: var(--bui-space-11);
}
-
.xl\:bui-mb-12 {
margin-bottom: var(--bui-space-12);
}
-
.xl\:bui-mb-13 {
margin-bottom: var(--bui-space-13);
}
-
.xl\:bui-mb-14 {
margin-bottom: var(--bui-space-14);
}
}
-
.bui-my {
margin-top: var(--my);
margin-bottom: var(--my);
}
-
.bui-my-0\.5 {
margin-top: var(--bui-space-0_5);
margin-bottom: var(--bui-space-0_5);
}
-
.bui-my-1 {
margin-top: var(--bui-space-1);
margin-bottom: var(--bui-space-1);
}
-
.bui-my-1\.5 {
margin-top: var(--bui-space-1_5);
margin-bottom: var(--bui-space-1_5);
}
-
.bui-my-2 {
margin-top: var(--bui-space-2);
margin-bottom: var(--bui-space-2);
}
-
.bui-my-3 {
margin-top: var(--bui-space-3);
margin-bottom: var(--bui-space-3);
}
-
.bui-my-4 {
margin-top: var(--bui-space-4);
margin-bottom: var(--bui-space-4);
}
-
.bui-my-5 {
margin-top: var(--bui-space-5);
margin-bottom: var(--bui-space-5);
}
-
.bui-my-6 {
margin-top: var(--bui-space-6);
margin-bottom: var(--bui-space-6);
}
-
.bui-my-7 {
margin-top: var(--bui-space-7);
margin-bottom: var(--bui-space-7);
}
-
.bui-my-8 {
margin-top: var(--bui-space-8);
margin-bottom: var(--bui-space-8);
}
-
.bui-my-9 {
margin-top: var(--bui-space-9);
margin-bottom: var(--bui-space-9);
}
-
.bui-my-10 {
margin-top: var(--bui-space-10);
margin-bottom: var(--bui-space-10);
}
-
.bui-my-11 {
margin-top: var(--bui-space-11);
margin-bottom: var(--bui-space-11);
}
-
.bui-my-12 {
margin-top: var(--bui-space-12);
margin-bottom: var(--bui-space-12);
}
-
.bui-my-13 {
margin-top: var(--bui-space-13);
margin-bottom: var(--bui-space-13);
}
-
.bui-my-14 {
margin-top: var(--bui-space-14);
margin-bottom: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-my {
margin-top: var(--my-xs);
margin-bottom: var(--my-xs);
}
-
.xs\:bui-my-0\.5 {
margin-top: var(--bui-space-0_5);
margin-bottom: var(--bui-space-0_5);
}
-
.xs\:bui-my-1 {
margin-top: var(--bui-space-1);
margin-bottom: var(--bui-space-1);
}
-
.xs\:bui-my-1\.5 {
margin-top: var(--bui-space-1_5);
margin-bottom: var(--bui-space-1_5);
}
-
.xs\:bui-my-2 {
margin-top: var(--bui-space-2);
margin-bottom: var(--bui-space-2);
}
-
.xs\:bui-my-3 {
margin-top: var(--bui-space-3);
margin-bottom: var(--bui-space-3);
}
-
.xs\:bui-my-4 {
margin-top: var(--bui-space-4);
margin-bottom: var(--bui-space-4);
}
-
.xs\:bui-my-5 {
margin-top: var(--bui-space-5);
margin-bottom: var(--bui-space-5);
}
-
.xs\:bui-my-6 {
margin-top: var(--bui-space-6);
margin-bottom: var(--bui-space-6);
}
-
.xs\:bui-my-7 {
margin-top: var(--bui-space-7);
margin-bottom: var(--bui-space-7);
}
-
.xs\:bui-my-8 {
margin-top: var(--bui-space-8);
margin-bottom: var(--bui-space-8);
}
-
.xs\:bui-my-9 {
margin-top: var(--bui-space-9);
margin-bottom: var(--bui-space-9);
}
-
.xs\:bui-my-10 {
margin-top: var(--bui-space-10);
margin-bottom: var(--bui-space-10);
}
-
.xs\:bui-my-11 {
margin-top: var(--bui-space-11);
margin-bottom: var(--bui-space-11);
}
-
.xs\:bui-my-12 {
margin-top: var(--bui-space-12);
margin-bottom: var(--bui-space-12);
}
-
.xs\:bui-my-13 {
margin-top: var(--bui-space-13);
margin-bottom: var(--bui-space-13);
}
-
.xs\:bui-my-14 {
margin-top: var(--bui-space-14);
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-my {
margin-top: var(--my-sm);
margin-bottom: var(--my-sm);
}
-
.sm\:bui-my-0\.5 {
margin-top: var(--bui-space-0_5);
margin-bottom: var(--bui-space-0_5);
}
-
.sm\:bui-my-1 {
margin-top: var(--bui-space-1);
margin-bottom: var(--bui-space-1);
}
-
.sm\:bui-my-1\.5 {
margin-top: var(--bui-space-1_5);
margin-bottom: var(--bui-space-1_5);
}
-
.sm\:bui-my-2 {
margin-top: var(--bui-space-2);
margin-bottom: var(--bui-space-2);
}
-
.sm\:bui-my-3 {
margin-top: var(--bui-space-3);
margin-bottom: var(--bui-space-3);
}
-
.sm\:bui-my-4 {
margin-top: var(--bui-space-4);
margin-bottom: var(--bui-space-4);
}
-
.sm\:bui-my-5 {
margin-top: var(--bui-space-5);
margin-bottom: var(--bui-space-5);
}
-
.sm\:bui-my-6 {
margin-top: var(--bui-space-6);
margin-bottom: var(--bui-space-6);
}
-
.sm\:bui-my-7 {
margin-top: var(--bui-space-7);
margin-bottom: var(--bui-space-7);
}
-
.sm\:bui-my-8 {
margin-top: var(--bui-space-8);
margin-bottom: var(--bui-space-8);
}
-
.sm\:bui-my-9 {
margin-top: var(--bui-space-9);
margin-bottom: var(--bui-space-9);
}
-
.sm\:bui-my-10 {
margin-top: var(--bui-space-10);
margin-bottom: var(--bui-space-10);
}
-
.sm\:bui-my-11 {
margin-top: var(--bui-space-11);
margin-bottom: var(--bui-space-11);
}
-
.sm\:bui-my-12 {
margin-top: var(--bui-space-12);
margin-bottom: var(--bui-space-12);
}
-
.sm\:bui-my-13 {
margin-top: var(--bui-space-13);
margin-bottom: var(--bui-space-13);
}
-
.sm\:bui-my-14 {
margin-top: var(--bui-space-14);
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-my {
margin-top: var(--my-md);
margin-bottom: var(--my-md);
}
-
.md\:bui-my-0\.5 {
margin-top: var(--bui-space-0_5);
margin-bottom: var(--bui-space-0_5);
}
-
.md\:bui-my-1 {
margin-top: var(--bui-space-1);
margin-bottom: var(--bui-space-1);
}
-
.md\:bui-my-1\.5 {
margin-top: var(--bui-space-1_5);
margin-bottom: var(--bui-space-1_5);
}
-
.md\:bui-my-2 {
margin-top: var(--bui-space-2);
margin-bottom: var(--bui-space-2);
}
-
.md\:bui-my-3 {
margin-top: var(--bui-space-3);
margin-bottom: var(--bui-space-3);
}
-
.md\:bui-my-4 {
margin-top: var(--bui-space-4);
margin-bottom: var(--bui-space-4);
}
-
.md\:bui-my-5 {
margin-top: var(--bui-space-5);
margin-bottom: var(--bui-space-5);
}
-
.md\:bui-my-6 {
margin-top: var(--bui-space-6);
margin-bottom: var(--bui-space-6);
}
-
.md\:bui-my-7 {
margin-top: var(--bui-space-7);
margin-bottom: var(--bui-space-7);
}
-
.md\:bui-my-8 {
margin-top: var(--bui-space-8);
margin-bottom: var(--bui-space-8);
}
-
.md\:bui-my-9 {
margin-top: var(--bui-space-9);
margin-bottom: var(--bui-space-9);
}
-
.md\:bui-my-10 {
margin-top: var(--bui-space-10);
margin-bottom: var(--bui-space-10);
}
-
.md\:bui-my-11 {
margin-top: var(--bui-space-11);
margin-bottom: var(--bui-space-11);
}
-
.md\:bui-my-12 {
margin-top: var(--bui-space-12);
margin-bottom: var(--bui-space-12);
}
-
.md\:bui-my-13 {
margin-top: var(--bui-space-13);
margin-bottom: var(--bui-space-13);
}
-
.md\:bui-my-14 {
margin-top: var(--bui-space-14);
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-my {
margin-top: var(--my-lg);
margin-bottom: var(--my-lg);
}
-
.lg\:bui-my-0\.5 {
margin-top: var(--bui-space-0_5);
margin-bottom: var(--bui-space-0_5);
}
-
.lg\:bui-my-1 {
margin-top: var(--bui-space-1);
margin-bottom: var(--bui-space-1);
}
-
.lg\:bui-my-1\.5 {
margin-top: var(--bui-space-1_5);
margin-bottom: var(--bui-space-1_5);
}
-
.lg\:bui-my-2 {
margin-top: var(--bui-space-2);
margin-bottom: var(--bui-space-2);
}
-
.lg\:bui-my-3 {
margin-top: var(--bui-space-3);
margin-bottom: var(--bui-space-3);
}
-
.lg\:bui-my-4 {
margin-top: var(--bui-space-4);
margin-bottom: var(--bui-space-4);
}
-
.lg\:bui-my-5 {
margin-top: var(--bui-space-5);
margin-bottom: var(--bui-space-5);
}
-
.lg\:bui-my-6 {
margin-top: var(--bui-space-6);
margin-bottom: var(--bui-space-6);
}
-
.lg\:bui-my-7 {
margin-top: var(--bui-space-7);
margin-bottom: var(--bui-space-7);
}
-
.lg\:bui-my-8 {
margin-top: var(--bui-space-8);
margin-bottom: var(--bui-space-8);
}
-
.lg\:bui-my-9 {
margin-top: var(--bui-space-9);
margin-bottom: var(--bui-space-9);
}
-
.lg\:bui-my-10 {
margin-top: var(--bui-space-10);
margin-bottom: var(--bui-space-10);
}
-
.lg\:bui-my-11 {
margin-top: var(--bui-space-11);
margin-bottom: var(--bui-space-11);
}
-
.lg\:bui-my-12 {
margin-top: var(--bui-space-12);
margin-bottom: var(--bui-space-12);
}
-
.lg\:bui-my-13 {
margin-top: var(--bui-space-13);
margin-bottom: var(--bui-space-13);
}
-
.lg\:bui-my-14 {
margin-top: var(--bui-space-14);
margin-bottom: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-my {
margin-top: var(--my-xl);
margin-bottom: var(--my-xl);
}
-
.xl\:bui-my-0\.5 {
margin-top: var(--bui-space-0_5);
margin-bottom: var(--bui-space-0_5);
}
-
.xl\:bui-my-1 {
margin-top: var(--bui-space-1);
margin-bottom: var(--bui-space-1);
}
-
.xl\:bui-my-1\.5 {
margin-top: var(--bui-space-1_5);
margin-bottom: var(--bui-space-1_5);
}
-
.xl\:bui-my-2 {
margin-top: var(--bui-space-2);
margin-bottom: var(--bui-space-2);
}
-
.xl\:bui-my-3 {
margin-top: var(--bui-space-3);
margin-bottom: var(--bui-space-3);
}
-
.xl\:bui-my-4 {
margin-top: var(--bui-space-4);
margin-bottom: var(--bui-space-4);
}
-
.xl\:bui-my-5 {
margin-top: var(--bui-space-5);
margin-bottom: var(--bui-space-5);
}
-
.xl\:bui-my-6 {
margin-top: var(--bui-space-6);
margin-bottom: var(--bui-space-6);
}
-
.xl\:bui-my-7 {
margin-top: var(--bui-space-7);
margin-bottom: var(--bui-space-7);
}
-
.xl\:bui-my-8 {
margin-top: var(--bui-space-8);
margin-bottom: var(--bui-space-8);
}
-
.xl\:bui-my-9 {
margin-top: var(--bui-space-9);
margin-bottom: var(--bui-space-9);
}
-
.xl\:bui-my-10 {
margin-top: var(--bui-space-10);
margin-bottom: var(--bui-space-10);
}
-
.xl\:bui-my-11 {
margin-top: var(--bui-space-11);
margin-bottom: var(--bui-space-11);
}
-
.xl\:bui-my-12 {
margin-top: var(--bui-space-12);
margin-bottom: var(--bui-space-12);
}
-
.xl\:bui-my-13 {
margin-top: var(--bui-space-13);
margin-bottom: var(--bui-space-13);
}
-
.xl\:bui-my-14 {
margin-top: var(--bui-space-14);
margin-bottom: var(--bui-space-14);
}
}
-
.bui-mx {
margin-left: var(--mx);
margin-right: var(--mx);
}
-
.bui-mx-0\.5 {
margin-left: var(--bui-space-0_5);
margin-right: var(--bui-space-0_5);
}
-
.bui-mx-1 {
margin-left: var(--bui-space-1);
margin-right: var(--bui-space-1);
}
-
.bui-mx-1\.5 {
margin-left: var(--bui-space-1_5);
margin-right: var(--bui-space-1_5);
}
-
.bui-mx-2 {
margin-left: var(--bui-space-2);
margin-right: var(--bui-space-2);
}
-
.bui-mx-3 {
margin-left: var(--bui-space-3);
margin-right: var(--bui-space-3);
}
-
.bui-mx-4 {
margin-left: var(--bui-space-4);
margin-right: var(--bui-space-4);
}
-
.bui-mx-5 {
margin-left: var(--bui-space-5);
margin-right: var(--bui-space-5);
}
-
.bui-mx-6 {
margin-left: var(--bui-space-6);
margin-right: var(--bui-space-6);
}
-
.bui-mx-7 {
margin-left: var(--bui-space-7);
margin-right: var(--bui-space-7);
}
-
.bui-mx-8 {
margin-left: var(--bui-space-8);
margin-right: var(--bui-space-8);
}
-
.bui-mx-9 {
margin-left: var(--bui-space-9);
margin-right: var(--bui-space-9);
}
-
.bui-mx-10 {
margin-left: var(--bui-space-10);
margin-right: var(--bui-space-10);
}
-
.bui-mx-11 {
margin-left: var(--bui-space-11);
margin-right: var(--bui-space-11);
}
-
.bui-mx-12 {
margin-left: var(--bui-space-12);
margin-right: var(--bui-space-12);
}
-
.bui-mx-13 {
margin-left: var(--bui-space-13);
margin-right: var(--bui-space-13);
}
-
.bui-mx-14 {
margin-left: var(--bui-space-14);
margin-right: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-mx {
margin-left: var(--mx-xs);
margin-right: var(--mx-xs);
}
-
.xs\:bui-mx-0\.5 {
margin-left: var(--bui-space-0_5);
margin-right: var(--bui-space-0_5);
}
-
.xs\:bui-mx-1 {
margin-left: var(--bui-space-1);
margin-right: var(--bui-space-1);
}
-
.xs\:bui-mx-1\.5 {
margin-left: var(--bui-space-1_5);
margin-right: var(--bui-space-1_5);
}
-
.xs\:bui-mx-2 {
margin-left: var(--bui-space-2);
margin-right: var(--bui-space-2);
}
-
.xs\:bui-mx-3 {
margin-left: var(--bui-space-3);
margin-right: var(--bui-space-3);
}
-
.xs\:bui-mx-4 {
margin-left: var(--bui-space-4);
margin-right: var(--bui-space-4);
}
-
.xs\:bui-mx-5 {
margin-left: var(--bui-space-5);
margin-right: var(--bui-space-5);
}
-
.xs\:bui-mx-6 {
margin-left: var(--bui-space-6);
margin-right: var(--bui-space-6);
}
-
.xs\:bui-mx-7 {
margin-left: var(--bui-space-7);
margin-right: var(--bui-space-7);
}
-
.xs\:bui-mx-8 {
margin-left: var(--bui-space-8);
margin-right: var(--bui-space-8);
}
-
.xs\:bui-mx-9 {
margin-left: var(--bui-space-9);
margin-right: var(--bui-space-9);
}
-
.xs\:bui-mx-10 {
margin-left: var(--bui-space-10);
margin-right: var(--bui-space-10);
}
-
.xs\:bui-mx-11 {
margin-left: var(--bui-space-11);
margin-right: var(--bui-space-11);
}
-
.xs\:bui-mx-12 {
margin-left: var(--bui-space-12);
margin-right: var(--bui-space-12);
}
-
.xs\:bui-mx-13 {
margin-left: var(--bui-space-13);
margin-right: var(--bui-space-13);
}
-
.xs\:bui-mx-14 {
margin-left: var(--bui-space-14);
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-mx {
margin-left: var(--mx-sm);
margin-right: var(--mx-sm);
}
-
.sm\:bui-mx-0\.5 {
margin-left: var(--bui-space-0_5);
margin-right: var(--bui-space-0_5);
}
-
.sm\:bui-mx-1 {
margin-left: var(--bui-space-1);
margin-right: var(--bui-space-1);
}
-
.sm\:bui-mx-1\.5 {
margin-left: var(--bui-space-1_5);
margin-right: var(--bui-space-1_5);
}
-
.sm\:bui-mx-2 {
margin-left: var(--bui-space-2);
margin-right: var(--bui-space-2);
}
-
.sm\:bui-mx-3 {
margin-left: var(--bui-space-3);
margin-right: var(--bui-space-3);
}
-
.sm\:bui-mx-4 {
margin-left: var(--bui-space-4);
margin-right: var(--bui-space-4);
}
-
.sm\:bui-mx-5 {
margin-left: var(--bui-space-5);
margin-right: var(--bui-space-5);
}
-
.sm\:bui-mx-6 {
margin-left: var(--bui-space-6);
margin-right: var(--bui-space-6);
}
-
.sm\:bui-mx-7 {
margin-left: var(--bui-space-7);
margin-right: var(--bui-space-7);
}
-
.sm\:bui-mx-8 {
margin-left: var(--bui-space-8);
margin-right: var(--bui-space-8);
}
-
.sm\:bui-mx-9 {
margin-left: var(--bui-space-9);
margin-right: var(--bui-space-9);
}
-
.sm\:bui-mx-10 {
margin-left: var(--bui-space-10);
margin-right: var(--bui-space-10);
}
-
.sm\:bui-mx-11 {
margin-left: var(--bui-space-11);
margin-right: var(--bui-space-11);
}
-
.sm\:bui-mx-12 {
margin-left: var(--bui-space-12);
margin-right: var(--bui-space-12);
}
-
.sm\:bui-mx-13 {
margin-left: var(--bui-space-13);
margin-right: var(--bui-space-13);
}
-
.sm\:bui-mx-14 {
margin-left: var(--bui-space-14);
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-mx {
margin-left: var(--mx-md);
margin-right: var(--mx-md);
}
-
.md\:bui-mx-0\.5 {
margin-left: var(--bui-space-0_5);
margin-right: var(--bui-space-0_5);
}
-
.md\:bui-mx-1 {
margin-left: var(--bui-space-1);
margin-right: var(--bui-space-1);
}
-
.md\:bui-mx-1\.5 {
margin-left: var(--bui-space-1_5);
margin-right: var(--bui-space-1_5);
}
-
.md\:bui-mx-2 {
margin-left: var(--bui-space-2);
margin-right: var(--bui-space-2);
}
-
.md\:bui-mx-3 {
margin-left: var(--bui-space-3);
margin-right: var(--bui-space-3);
}
-
.md\:bui-mx-4 {
margin-left: var(--bui-space-4);
margin-right: var(--bui-space-4);
}
-
.md\:bui-mx-5 {
margin-left: var(--bui-space-5);
margin-right: var(--bui-space-5);
}
-
.md\:bui-mx-6 {
margin-left: var(--bui-space-6);
margin-right: var(--bui-space-6);
}
-
.md\:bui-mx-7 {
margin-left: var(--bui-space-7);
margin-right: var(--bui-space-7);
}
-
.md\:bui-mx-8 {
margin-left: var(--bui-space-8);
margin-right: var(--bui-space-8);
}
-
.md\:bui-mx-9 {
margin-left: var(--bui-space-9);
margin-right: var(--bui-space-9);
}
-
.md\:bui-mx-10 {
margin-left: var(--bui-space-10);
margin-right: var(--bui-space-10);
}
-
.md\:bui-mx-11 {
margin-left: var(--bui-space-11);
margin-right: var(--bui-space-11);
}
-
.md\:bui-mx-12 {
margin-left: var(--bui-space-12);
margin-right: var(--bui-space-12);
}
-
.md\:bui-mx-13 {
margin-left: var(--bui-space-13);
margin-right: var(--bui-space-13);
}
-
.md\:bui-mx-14 {
margin-left: var(--bui-space-14);
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-mx {
margin-left: var(--mx-lg);
margin-right: var(--mx-lg);
}
-
.lg\:bui-mx-0\.5 {
margin-left: var(--bui-space-0_5);
margin-right: var(--bui-space-0_5);
}
-
.lg\:bui-mx-1 {
margin-left: var(--bui-space-1);
margin-right: var(--bui-space-1);
}
-
.lg\:bui-mx-1\.5 {
margin-left: var(--bui-space-1_5);
margin-right: var(--bui-space-1_5);
}
-
.lg\:bui-mx-2 {
margin-left: var(--bui-space-2);
margin-right: var(--bui-space-2);
}
-
.lg\:bui-mx-3 {
margin-left: var(--bui-space-3);
margin-right: var(--bui-space-3);
}
-
.lg\:bui-mx-4 {
margin-left: var(--bui-space-4);
margin-right: var(--bui-space-4);
}
-
.lg\:bui-mx-5 {
margin-left: var(--bui-space-5);
margin-right: var(--bui-space-5);
}
-
.lg\:bui-mx-6 {
margin-left: var(--bui-space-6);
margin-right: var(--bui-space-6);
}
-
.lg\:bui-mx-7 {
margin-left: var(--bui-space-7);
margin-right: var(--bui-space-7);
}
-
.lg\:bui-mx-8 {
margin-left: var(--bui-space-8);
margin-right: var(--bui-space-8);
}
-
.lg\:bui-mx-9 {
margin-left: var(--bui-space-9);
margin-right: var(--bui-space-9);
}
-
.lg\:bui-mx-10 {
margin-left: var(--bui-space-10);
margin-right: var(--bui-space-10);
}
-
.lg\:bui-mx-11 {
margin-left: var(--bui-space-11);
margin-right: var(--bui-space-11);
}
-
.lg\:bui-mx-12 {
margin-left: var(--bui-space-12);
margin-right: var(--bui-space-12);
}
-
.lg\:bui-mx-13 {
margin-left: var(--bui-space-13);
margin-right: var(--bui-space-13);
}
-
.lg\:bui-mx-14 {
margin-left: var(--bui-space-14);
margin-right: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-mx {
margin-left: var(--mx-xl);
margin-right: var(--mx-xl);
}
-
.xl\:bui-mx-0\.5 {
margin-left: var(--bui-space-0_5);
margin-right: var(--bui-space-0_5);
}
-
.xl\:bui-mx-1 {
margin-left: var(--bui-space-1);
margin-right: var(--bui-space-1);
}
-
.xl\:bui-mx-1\.5 {
margin-left: var(--bui-space-1_5);
margin-right: var(--bui-space-1_5);
}
-
.xl\:bui-mx-2 {
margin-left: var(--bui-space-2);
margin-right: var(--bui-space-2);
}
-
.xl\:bui-mx-3 {
margin-left: var(--bui-space-3);
margin-right: var(--bui-space-3);
}
-
.xl\:bui-mx-4 {
margin-left: var(--bui-space-4);
margin-right: var(--bui-space-4);
}
-
.xl\:bui-mx-5 {
margin-left: var(--bui-space-5);
margin-right: var(--bui-space-5);
}
-
.xl\:bui-mx-6 {
margin-left: var(--bui-space-6);
margin-right: var(--bui-space-6);
}
-
.xl\:bui-mx-7 {
margin-left: var(--bui-space-7);
margin-right: var(--bui-space-7);
}
-
.xl\:bui-mx-8 {
margin-left: var(--bui-space-8);
margin-right: var(--bui-space-8);
}
-
.xl\:bui-mx-9 {
margin-left: var(--bui-space-9);
margin-right: var(--bui-space-9);
}
-
.xl\:bui-mx-10 {
margin-left: var(--bui-space-10);
margin-right: var(--bui-space-10);
}
-
.xl\:bui-mx-11 {
margin-left: var(--bui-space-11);
margin-right: var(--bui-space-11);
}
-
.xl\:bui-mx-12 {
margin-left: var(--bui-space-12);
margin-right: var(--bui-space-12);
}
-
.xl\:bui-mx-13 {
margin-left: var(--bui-space-13);
margin-right: var(--bui-space-13);
}
-
.xl\:bui-mx-14 {
margin-left: var(--bui-space-14);
margin-right: var(--bui-space-14);
}
}
-
.bui-display-none {
display: none;
}
-
.bui-display-inline {
display: inline;
}
-
.bui-display-inline-block {
display: inline-block;
}
-
.bui-display-block {
display: block;
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-display-none {
display: none;
}
-
.xs\:bui-display-inline {
display: inline;
}
-
.xs\:bui-display-inline-block {
display: inline-block;
}
-
.xs\:bui-display-block {
display: block;
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-display-none {
display: none;
}
-
.sm\:bui-display-inline {
display: inline;
}
-
.sm\:bui-display-inline-block {
display: inline-block;
}
-
.sm\:bui-display-block {
display: block;
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-display-none {
display: none;
}
-
.md\:bui-display-inline {
display: inline;
}
-
.md\:bui-display-inline-block {
display: inline-block;
}
-
.md\:bui-display-block {
display: block;
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-display-none {
display: none;
}
-
.lg\:bui-display-inline {
display: inline;
}
-
.lg\:bui-display-inline-block {
display: inline-block;
}
-
.lg\:bui-display-block {
display: block;
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-display-none {
display: none;
}
-
.xl\:bui-display-inline {
display: inline;
}
-
.xl\:bui-display-inline-block {
display: inline-block;
}
-
.xl\:bui-display-block {
display: block;
}
}
-
.bui-w {
width: var(--width);
}
-
.bui-min-w {
min-width: var(--min-width);
}
-
.bui-max-w {
max-width: var(--max-width);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-w {
width: var(--width);
}
-
.xs\:bui-min-w {
min-width: var(--min-width);
}
-
.xs\:bui-max-w {
max-width: var(--max-width);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-w {
width: var(--width);
}
-
.sm\:bui-min-w {
min-width: var(--min-width);
}
-
.sm\:bui-max-w {
max-width: var(--max-width);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-w {
width: var(--width);
}
-
.md\:bui-min-w {
min-width: var(--min-width);
}
-
.md\:bui-max-w {
max-width: var(--max-width);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-w {
width: var(--width);
}
-
.lg\:bui-min-w {
min-width: var(--min-width);
}
-
.lg\:bui-max-w {
max-width: var(--max-width);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-w {
width: var(--width);
}
-
.xl\:bui-min-w {
min-width: var(--min-width);
}
-
.xl\:bui-max-w {
max-width: var(--max-width);
}
}
-
.bui-h {
height: var(--height);
}
-
.bui-min-h {
min-height: var(--min-height);
}
-
.bui-max-h {
max-height: var(--max-height);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-h {
height: var(--height);
}
-
.xs\:bui-min-h {
min-height: var(--min-height);
}
-
.xs\:bui-max-h {
max-height: var(--max-height);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-h {
height: var(--height);
}
-
.sm\:bui-min-h {
min-height: var(--min-height);
}
-
.sm\:bui-max-h {
max-height: var(--max-height);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-h {
height: var(--height);
}
-
.md\:bui-min-h {
min-height: var(--min-height);
}
-
.md\:bui-max-h {
max-height: var(--max-height);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-h {
height: var(--height);
}
-
.lg\:bui-min-h {
min-height: var(--min-height);
}
-
.lg\:bui-max-h {
max-height: var(--max-height);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-h {
height: var(--height);
}
-
.xl\:bui-min-h {
min-height: var(--min-height);
}
-
.xl\:bui-max-h {
max-height: var(--max-height);
}
}
-
.bui-position-absolute {
position: absolute;
}
-
.bui-position-fixed {
position: fixed;
}
-
.bui-position-sticky {
position: sticky;
}
-
.bui-position-relative {
position: relative;
}
-
.bui-position-static {
position: static;
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-position-absolute {
position: absolute;
}
-
.xs\:bui-position-fixed {
position: fixed;
}
-
.xs\:bui-position-sticky {
position: sticky;
}
-
.xs\:bui-position-relative {
position: relative;
}
-
.xs\:bui-position-static {
position: static;
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-position-absolute {
position: absolute;
}
-
.sm\:bui-position-fixed {
position: fixed;
}
-
.sm\:bui-position-sticky {
position: sticky;
}
-
.sm\:bui-position-relative {
position: relative;
}
-
.sm\:bui-position-static {
position: static;
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-position-absolute {
position: absolute;
}
-
.md\:bui-position-fixed {
position: fixed;
}
-
.md\:bui-position-sticky {
position: sticky;
}
-
.md\:bui-position-relative {
position: relative;
}
-
.md\:bui-position-static {
position: static;
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-position-absolute {
position: absolute;
}
-
.lg\:bui-position-fixed {
position: fixed;
}
-
.lg\:bui-position-sticky {
position: sticky;
}
-
.lg\:bui-position-relative {
position: relative;
}
-
.lg\:bui-position-static {
position: static;
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-position-absolute {
position: absolute;
}
-
.xl\:bui-position-fixed {
position: fixed;
}
-
.xl\:bui-position-sticky {
position: sticky;
}
-
.xl\:bui-position-relative {
position: relative;
}
-
.xl\:bui-position-static {
position: static;
}
}
-
.bui-columns-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
-
.bui-columns-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
-
.bui-columns-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
-
.bui-columns-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
-
.bui-columns-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
-
.bui-columns-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
-
.bui-columns-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
-
.bui-columns-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
-
.bui-columns-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
-
.bui-columns-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
-
.bui-columns-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
-
.bui-columns-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
-
.bui-columns-auto {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
-
.bui-col-span-1 {
grid-column: span 1 / span 1;
}
-
.bui-col-span-2 {
grid-column: span 2 / span 2;
}
-
.bui-col-span-3 {
grid-column: span 3 / span 3;
}
-
.bui-col-span-4 {
grid-column: span 4 / span 4;
}
-
.bui-col-span-5 {
grid-column: span 5 / span 5;
}
-
.bui-col-span-6 {
grid-column: span 6 / span 6;
}
-
.bui-col-span-7 {
grid-column: span 7 / span 7;
}
-
.bui-col-span-8 {
grid-column: span 8 / span 8;
}
-
.bui-col-span-9 {
grid-column: span 9 / span 9;
}
-
.bui-col-span-10 {
grid-column: span 10 / span 10;
}
-
.bui-col-span-11 {
grid-column: span 11 / span 11;
}
-
.bui-col-span-12 {
grid-column: span 12 / span 12;
}
-
.bui-col-span-auto {
- grid-column: span auto / span auto;
+ grid-column: span auto/span auto;
}
-
.bui-col-start-1 {
grid-column-start: 1;
}
-
.bui-col-start-2 {
grid-column-start: 2;
}
-
.bui-col-start-3 {
grid-column-start: 3;
}
-
.bui-col-start-4 {
grid-column-start: 4;
}
-
.bui-col-start-5 {
grid-column-start: 5;
}
-
.bui-col-start-6 {
grid-column-start: 6;
}
-
.bui-col-start-7 {
grid-column-start: 7;
}
-
.bui-col-start-8 {
grid-column-start: 8;
}
-
.bui-col-start-9 {
grid-column-start: 9;
}
-
.bui-col-start-10 {
grid-column-start: 10;
}
-
.bui-col-start-11 {
grid-column-start: 11;
}
-
.bui-col-start-12 {
grid-column-start: 12;
}
-
.bui-col-start-13 {
grid-column-start: 13;
}
-
.bui-col-start-auto {
grid-column-start: auto;
}
-
.bui-col-end-1 {
grid-column-end: 1;
}
-
.bui-col-end-2 {
grid-column-end: 2;
}
-
.bui-col-end-3 {
grid-column-end: 3;
}
-
.bui-col-end-4 {
grid-column-end: 4;
}
-
.bui-col-end-5 {
grid-column-end: 5;
}
-
.bui-col-end-6 {
grid-column-end: 6;
}
-
.bui-col-end-7 {
grid-column-end: 7;
}
-
.bui-col-end-8 {
grid-column-end: 8;
}
-
.bui-col-end-9 {
grid-column-end: 9;
}
-
.bui-col-end-10 {
grid-column-end: 10;
}
-
.bui-col-end-11 {
grid-column-end: 11;
}
-
.bui-col-end-12 {
grid-column-end: 12;
}
-
.bui-col-end-13 {
grid-column-end: 13;
}
-
.bui-col-end-auto {
grid-column-end: auto;
}
-
.bui-row-span-1 {
grid-row: span 1 / span 1;
}
-
.bui-row-span-2 {
grid-row: span 2 / span 2;
}
-
.bui-row-span-3 {
grid-row: span 3 / span 3;
}
-
.bui-row-span-4 {
grid-row: span 4 / span 4;
}
-
.bui-row-span-5 {
grid-row: span 5 / span 5;
}
-
.bui-row-span-6 {
grid-row: span 6 / span 6;
}
-
.bui-row-span-7 {
grid-row: span 7 / span 7;
}
-
.bui-row-span-8 {
grid-row: span 8 / span 8;
}
-
.bui-row-span-9 {
grid-row: span 9 / span 9;
}
-
.bui-row-span-10 {
grid-row: span 10 / span 10;
}
-
.bui-row-span-11 {
grid-row: span 11 / span 11;
}
-
.bui-row-span-12 {
grid-row: span 12 / span 12;
}
-
.bui-row-span-auto {
- grid-row: span auto / span auto;
+ grid-row: span auto/span auto;
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-columns-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
-
.xs\:bui-columns-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
-
.xs\:bui-columns-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
-
.xs\:bui-columns-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
-
.xs\:bui-columns-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
-
.xs\:bui-columns-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
-
.xs\:bui-columns-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
-
.xs\:bui-columns-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
-
.xs\:bui-columns-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
-
.xs\:bui-columns-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
-
.xs\:bui-columns-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
-
.xs\:bui-columns-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
-
.xs\:bui-columns-auto {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
-
.xs\:bui-col-span-1 {
grid-column: span 1 / span 1;
}
-
.xs\:bui-col-span-2 {
grid-column: span 2 / span 2;
}
-
.xs\:bui-col-span-3 {
grid-column: span 3 / span 3;
}
-
.xs\:bui-col-span-4 {
grid-column: span 4 / span 4;
}
-
.xs\:bui-col-span-5 {
grid-column: span 5 / span 5;
}
-
.xs\:bui-col-span-6 {
grid-column: span 6 / span 6;
}
-
.xs\:bui-col-span-7 {
grid-column: span 7 / span 7;
}
-
.xs\:bui-col-span-8 {
grid-column: span 8 / span 8;
}
-
.xs\:bui-col-span-9 {
grid-column: span 9 / span 9;
}
-
.xs\:bui-col-span-10 {
grid-column: span 10 / span 10;
}
-
.xs\:bui-col-span-11 {
grid-column: span 11 / span 11;
}
-
.xs\:bui-col-span-12 {
grid-column: span 12 / span 12;
}
-
.xs\:bui-col-span-auto {
- grid-column: span auto / span auto;
+ grid-column: span auto/span auto;
}
-
.xs\:bui-col-start-1 {
grid-column-start: 1;
}
-
.xs\:bui-col-start-2 {
grid-column-start: 2;
}
-
.xs\:bui-col-start-3 {
grid-column-start: 3;
}
-
.xs\:bui-col-start-4 {
grid-column-start: 4;
}
-
.xs\:bui-col-start-5 {
grid-column-start: 5;
}
-
.xs\:bui-col-start-6 {
grid-column-start: 6;
}
-
.xs\:bui-col-start-7 {
grid-column-start: 7;
}
-
.xs\:bui-col-start-8 {
grid-column-start: 8;
}
-
.xs\:bui-col-start-9 {
grid-column-start: 9;
}
-
.xs\:bui-col-start-10 {
grid-column-start: 10;
}
-
.xs\:bui-col-start-11 {
grid-column-start: 11;
}
-
.xs\:bui-col-start-12 {
grid-column-start: 12;
}
-
.xs\:bui-col-start-13 {
grid-column-start: 13;
}
-
.xs\:bui-col-start-auto {
grid-column-start: auto;
}
-
.xs\:bui-col-end-1 {
grid-column-end: 1;
}
-
.xs\:bui-col-end-2 {
grid-column-end: 2;
}
-
.xs\:bui-col-end-3 {
grid-column-end: 3;
}
-
.xs\:bui-col-end-4 {
grid-column-end: 4;
}
-
.xs\:bui-col-end-5 {
grid-column-end: 5;
}
-
.xs\:bui-col-end-6 {
grid-column-end: 6;
}
-
.xs\:bui-col-end-7 {
grid-column-end: 7;
}
-
.xs\:bui-col-end-8 {
grid-column-end: 8;
}
-
.xs\:bui-col-end-9 {
grid-column-end: 9;
}
-
.xs\:bui-col-end-10 {
grid-column-end: 10;
}
-
.xs\:bui-col-end-11 {
grid-column-end: 11;
}
-
.xs\:bui-col-end-12 {
grid-column-end: 12;
}
-
.xs\:bui-col-end-13 {
grid-column-end: 13;
}
-
.xs\:bui-col-end-auto {
grid-column-end: auto;
}
-
.xs\:bui-row-span-1 {
grid-row: span 1 / span 1;
}
-
.xs\:bui-row-span-2 {
grid-row: span 2 / span 2;
}
-
.xs\:bui-row-span-3 {
grid-row: span 3 / span 3;
}
-
.xs\:bui-row-span-4 {
grid-row: span 4 / span 4;
}
-
.xs\:bui-row-span-5 {
grid-row: span 5 / span 5;
}
-
.xs\:bui-row-span-6 {
grid-row: span 6 / span 6;
}
-
.xs\:bui-row-span-7 {
grid-row: span 7 / span 7;
}
-
.xs\:bui-row-span-8 {
grid-row: span 8 / span 8;
}
-
.xs\:bui-row-span-9 {
grid-row: span 9 / span 9;
}
-
.xs\:bui-row-span-10 {
grid-row: span 10 / span 10;
}
-
.xs\:bui-row-span-11 {
grid-row: span 11 / span 11;
}
-
.xs\:bui-row-span-12 {
grid-row: span 12 / span 12;
}
-
.xs\:bui-row-span-auto {
- grid-row: span auto / span auto;
+ grid-row: span auto/span auto;
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-columns-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
-
.sm\:bui-columns-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
-
.sm\:bui-columns-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
-
.sm\:bui-columns-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
-
.sm\:bui-columns-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
-
.sm\:bui-columns-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
-
.sm\:bui-columns-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
-
.sm\:bui-columns-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
-
.sm\:bui-columns-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
-
.sm\:bui-columns-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
-
.sm\:bui-columns-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
-
.sm\:bui-columns-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
-
.sm\:bui-columns-auto {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
-
.sm\:bui-col-span-1 {
grid-column: span 1 / span 1;
}
-
.sm\:bui-col-span-2 {
grid-column: span 2 / span 2;
}
-
.sm\:bui-col-span-3 {
grid-column: span 3 / span 3;
}
-
.sm\:bui-col-span-4 {
grid-column: span 4 / span 4;
}
-
.sm\:bui-col-span-5 {
grid-column: span 5 / span 5;
}
-
.sm\:bui-col-span-6 {
grid-column: span 6 / span 6;
}
-
.sm\:bui-col-span-7 {
grid-column: span 7 / span 7;
}
-
.sm\:bui-col-span-8 {
grid-column: span 8 / span 8;
}
-
.sm\:bui-col-span-9 {
grid-column: span 9 / span 9;
}
-
.sm\:bui-col-span-10 {
grid-column: span 10 / span 10;
}
-
.sm\:bui-col-span-11 {
grid-column: span 11 / span 11;
}
-
.sm\:bui-col-span-12 {
grid-column: span 12 / span 12;
}
-
.sm\:bui-col-span-auto {
- grid-column: span auto / span auto;
+ grid-column: span auto/span auto;
}
-
.sm\:bui-col-start-1 {
grid-column-start: 1;
}
-
.sm\:bui-col-start-2 {
grid-column-start: 2;
}
-
.sm\:bui-col-start-3 {
grid-column-start: 3;
}
-
.sm\:bui-col-start-4 {
grid-column-start: 4;
}
-
.sm\:bui-col-start-5 {
grid-column-start: 5;
}
-
.sm\:bui-col-start-6 {
grid-column-start: 6;
}
-
.sm\:bui-col-start-7 {
grid-column-start: 7;
}
-
.sm\:bui-col-start-8 {
grid-column-start: 8;
}
-
.sm\:bui-col-start-9 {
grid-column-start: 9;
}
-
.sm\:bui-col-start-10 {
grid-column-start: 10;
}
-
.sm\:bui-col-start-11 {
grid-column-start: 11;
}
-
.sm\:bui-col-start-12 {
grid-column-start: 12;
}
-
.sm\:bui-col-start-13 {
grid-column-start: 13;
}
-
.sm\:bui-col-start-auto {
grid-column-start: auto;
}
-
.sm\:bui-col-end-1 {
grid-column-end: 1;
}
-
.sm\:bui-col-end-2 {
grid-column-end: 2;
}
-
.sm\:bui-col-end-3 {
grid-column-end: 3;
}
-
.sm\:bui-col-end-4 {
grid-column-end: 4;
}
-
.sm\:bui-col-end-5 {
grid-column-end: 5;
}
-
.sm\:bui-col-end-6 {
grid-column-end: 6;
}
-
.sm\:bui-col-end-7 {
grid-column-end: 7;
}
-
.sm\:bui-col-end-8 {
grid-column-end: 8;
}
-
.sm\:bui-col-end-9 {
grid-column-end: 9;
}
-
.sm\:bui-col-end-10 {
grid-column-end: 10;
}
-
.sm\:bui-col-end-11 {
grid-column-end: 11;
}
-
.sm\:bui-col-end-12 {
grid-column-end: 12;
}
-
.sm\:bui-col-end-13 {
grid-column-end: 13;
}
-
.sm\:bui-col-end-auto {
grid-column-end: auto;
}
-
.sm\:bui-row-span-1 {
grid-row: span 1 / span 1;
}
-
.sm\:bui-row-span-2 {
grid-row: span 2 / span 2;
}
-
.sm\:bui-row-span-3 {
grid-row: span 3 / span 3;
}
-
.sm\:bui-row-span-4 {
grid-row: span 4 / span 4;
}
-
.sm\:bui-row-span-5 {
grid-row: span 5 / span 5;
}
-
.sm\:bui-row-span-6 {
grid-row: span 6 / span 6;
}
-
.sm\:bui-row-span-7 {
grid-row: span 7 / span 7;
}
-
.sm\:bui-row-span-8 {
grid-row: span 8 / span 8;
}
-
.sm\:bui-row-span-9 {
grid-row: span 9 / span 9;
}
-
.sm\:bui-row-span-10 {
grid-row: span 10 / span 10;
}
-
.sm\:bui-row-span-11 {
grid-row: span 11 / span 11;
}
-
.sm\:bui-row-span-12 {
grid-row: span 12 / span 12;
}
-
.sm\:bui-row-span-auto {
- grid-row: span auto / span auto;
+ grid-row: span auto/span auto;
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-columns-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
-
.md\:bui-columns-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
-
.md\:bui-columns-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
-
.md\:bui-columns-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
-
.md\:bui-columns-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
-
.md\:bui-columns-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
-
.md\:bui-columns-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
-
.md\:bui-columns-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
-
.md\:bui-columns-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
-
.md\:bui-columns-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
-
.md\:bui-columns-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
-
.md\:bui-columns-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
-
.md\:bui-columns-auto {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
-
.md\:bui-col-span-1 {
grid-column: span 1 / span 1;
}
-
.md\:bui-col-span-2 {
grid-column: span 2 / span 2;
}
-
.md\:bui-col-span-3 {
grid-column: span 3 / span 3;
}
-
.md\:bui-col-span-4 {
grid-column: span 4 / span 4;
}
-
.md\:bui-col-span-5 {
grid-column: span 5 / span 5;
}
-
.md\:bui-col-span-6 {
grid-column: span 6 / span 6;
}
-
.md\:bui-col-span-7 {
grid-column: span 7 / span 7;
}
-
.md\:bui-col-span-8 {
grid-column: span 8 / span 8;
}
-
.md\:bui-col-span-9 {
grid-column: span 9 / span 9;
}
-
.md\:bui-col-span-10 {
grid-column: span 10 / span 10;
}
-
.md\:bui-col-span-11 {
grid-column: span 11 / span 11;
}
-
.md\:bui-col-span-12 {
grid-column: span 12 / span 12;
}
-
.md\:bui-col-span-auto {
- grid-column: span auto / span auto;
+ grid-column: span auto/span auto;
}
-
.md\:bui-col-start-1 {
grid-column-start: 1;
}
-
.md\:bui-col-start-2 {
grid-column-start: 2;
}
-
.md\:bui-col-start-3 {
grid-column-start: 3;
}
-
.md\:bui-col-start-4 {
grid-column-start: 4;
}
-
.md\:bui-col-start-5 {
grid-column-start: 5;
}
-
.md\:bui-col-start-6 {
grid-column-start: 6;
}
-
.md\:bui-col-start-7 {
grid-column-start: 7;
}
-
.md\:bui-col-start-8 {
grid-column-start: 8;
}
-
.md\:bui-col-start-9 {
grid-column-start: 9;
}
-
.md\:bui-col-start-10 {
grid-column-start: 10;
}
-
.md\:bui-col-start-11 {
grid-column-start: 11;
}
-
.md\:bui-col-start-12 {
grid-column-start: 12;
}
-
.md\:bui-col-start-13 {
grid-column-start: 13;
}
-
.md\:bui-col-start-auto {
grid-column-start: auto;
}
-
.md\:bui-col-end-1 {
grid-column-end: 1;
}
-
.md\:bui-col-end-2 {
grid-column-end: 2;
}
-
.md\:bui-col-end-3 {
grid-column-end: 3;
}
-
.md\:bui-col-end-4 {
grid-column-end: 4;
}
-
.md\:bui-col-end-5 {
grid-column-end: 5;
}
-
.md\:bui-col-end-6 {
grid-column-end: 6;
}
-
.md\:bui-col-end-7 {
grid-column-end: 7;
}
-
.md\:bui-col-end-8 {
grid-column-end: 8;
}
-
.md\:bui-col-end-9 {
grid-column-end: 9;
}
-
.md\:bui-col-end-10 {
grid-column-end: 10;
}
-
.md\:bui-col-end-11 {
grid-column-end: 11;
}
-
.md\:bui-col-end-12 {
grid-column-end: 12;
}
-
.md\:bui-col-end-13 {
grid-column-end: 13;
}
-
.md\:bui-col-end-auto {
grid-column-end: auto;
}
-
.md\:bui-row-span-1 {
grid-row: span 1 / span 1;
}
-
.md\:bui-row-span-2 {
grid-row: span 2 / span 2;
}
-
.md\:bui-row-span-3 {
grid-row: span 3 / span 3;
}
-
.md\:bui-row-span-4 {
grid-row: span 4 / span 4;
}
-
.md\:bui-row-span-5 {
grid-row: span 5 / span 5;
}
-
.md\:bui-row-span-6 {
grid-row: span 6 / span 6;
}
-
.md\:bui-row-span-7 {
grid-row: span 7 / span 7;
}
-
.md\:bui-row-span-8 {
grid-row: span 8 / span 8;
}
-
.md\:bui-row-span-9 {
grid-row: span 9 / span 9;
}
-
.md\:bui-row-span-10 {
grid-row: span 10 / span 10;
}
-
.md\:bui-row-span-11 {
grid-row: span 11 / span 11;
}
-
.md\:bui-row-span-12 {
grid-row: span 12 / span 12;
}
-
.md\:bui-row-span-auto {
- grid-row: span auto / span auto;
+ grid-row: span auto/span auto;
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-columns-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
-
.lg\:bui-columns-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
-
.lg\:bui-columns-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
-
.lg\:bui-columns-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
-
.lg\:bui-columns-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
-
.lg\:bui-columns-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
-
.lg\:bui-columns-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
-
.lg\:bui-columns-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
-
.lg\:bui-columns-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
-
.lg\:bui-columns-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
-
.lg\:bui-columns-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
-
.lg\:bui-columns-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
-
.lg\:bui-columns-auto {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
-
.lg\:bui-col-span-1 {
grid-column: span 1 / span 1;
}
-
.lg\:bui-col-span-2 {
grid-column: span 2 / span 2;
}
-
.lg\:bui-col-span-3 {
grid-column: span 3 / span 3;
}
-
.lg\:bui-col-span-4 {
grid-column: span 4 / span 4;
}
-
.lg\:bui-col-span-5 {
grid-column: span 5 / span 5;
}
-
.lg\:bui-col-span-6 {
grid-column: span 6 / span 6;
}
-
.lg\:bui-col-span-7 {
grid-column: span 7 / span 7;
}
-
.lg\:bui-col-span-8 {
grid-column: span 8 / span 8;
}
-
.lg\:bui-col-span-9 {
grid-column: span 9 / span 9;
}
-
.lg\:bui-col-span-10 {
grid-column: span 10 / span 10;
}
-
.lg\:bui-col-span-11 {
grid-column: span 11 / span 11;
}
-
.lg\:bui-col-span-12 {
grid-column: span 12 / span 12;
}
-
.lg\:bui-col-span-auto {
- grid-column: span auto / span auto;
+ grid-column: span auto/span auto;
}
-
.lg\:bui-col-start-1 {
grid-column-start: 1;
}
-
.lg\:bui-col-start-2 {
grid-column-start: 2;
}
-
.lg\:bui-col-start-3 {
grid-column-start: 3;
}
-
.lg\:bui-col-start-4 {
grid-column-start: 4;
}
-
.lg\:bui-col-start-5 {
grid-column-start: 5;
}
-
.lg\:bui-col-start-6 {
grid-column-start: 6;
}
-
.lg\:bui-col-start-7 {
grid-column-start: 7;
}
-
.lg\:bui-col-start-8 {
grid-column-start: 8;
}
-
.lg\:bui-col-start-9 {
grid-column-start: 9;
}
-
.lg\:bui-col-start-10 {
grid-column-start: 10;
}
-
.lg\:bui-col-start-11 {
grid-column-start: 11;
}
-
.lg\:bui-col-start-12 {
grid-column-start: 12;
}
-
.lg\:bui-col-start-13 {
grid-column-start: 13;
}
-
.lg\:bui-col-start-auto {
grid-column-start: auto;
}
-
.lg\:bui-col-end-1 {
grid-column-end: 1;
}
-
.lg\:bui-col-end-2 {
grid-column-end: 2;
}
-
.lg\:bui-col-end-3 {
grid-column-end: 3;
}
-
.lg\:bui-col-end-4 {
grid-column-end: 4;
}
-
.lg\:bui-col-end-5 {
grid-column-end: 5;
}
-
.lg\:bui-col-end-6 {
grid-column-end: 6;
}
-
.lg\:bui-col-end-7 {
grid-column-end: 7;
}
-
.lg\:bui-col-end-8 {
grid-column-end: 8;
}
-
.lg\:bui-col-end-9 {
grid-column-end: 9;
}
-
.lg\:bui-col-end-10 {
grid-column-end: 10;
}
-
.lg\:bui-col-end-11 {
grid-column-end: 11;
}
-
.lg\:bui-col-end-12 {
grid-column-end: 12;
}
-
.lg\:bui-col-end-13 {
grid-column-end: 13;
}
-
.lg\:bui-col-end-auto {
grid-column-end: auto;
}
-
.lg\:bui-row-span-1 {
grid-row: span 1 / span 1;
}
-
.lg\:bui-row-span-2 {
grid-row: span 2 / span 2;
}
-
.lg\:bui-row-span-3 {
grid-row: span 3 / span 3;
}
-
.lg\:bui-row-span-4 {
grid-row: span 4 / span 4;
}
-
.lg\:bui-row-span-5 {
grid-row: span 5 / span 5;
}
-
.lg\:bui-row-span-6 {
grid-row: span 6 / span 6;
}
-
.lg\:bui-row-span-7 {
grid-row: span 7 / span 7;
}
-
.lg\:bui-row-span-8 {
grid-row: span 8 / span 8;
}
-
.lg\:bui-row-span-9 {
grid-row: span 9 / span 9;
}
-
.lg\:bui-row-span-10 {
grid-row: span 10 / span 10;
}
-
.lg\:bui-row-span-11 {
grid-row: span 11 / span 11;
}
-
.lg\:bui-row-span-12 {
grid-row: span 12 / span 12;
}
-
.lg\:bui-row-span-auto {
- grid-row: span auto / span auto;
+ grid-row: span auto/span auto;
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-columns-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
-
.xl\:bui-columns-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
-
.xl\:bui-columns-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
-
.xl\:bui-columns-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
-
.xl\:bui-columns-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
-
.xl\:bui-columns-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
-
.xl\:bui-columns-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
-
.xl\:bui-columns-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
-
.xl\:bui-columns-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
-
.xl\:bui-columns-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
-
.xl\:bui-columns-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
-
.xl\:bui-columns-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
-
.xl\:bui-columns-auto {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
-
.xl\:bui-col-span-1 {
grid-column: span 1 / span 1;
}
-
.xl\:bui-col-span-2 {
grid-column: span 2 / span 2;
}
-
.xl\:bui-col-span-3 {
grid-column: span 3 / span 3;
}
-
.xl\:bui-col-span-4 {
grid-column: span 4 / span 4;
}
-
.xl\:bui-col-span-5 {
grid-column: span 5 / span 5;
}
-
.xl\:bui-col-span-6 {
grid-column: span 6 / span 6;
}
-
.xl\:bui-col-span-7 {
grid-column: span 7 / span 7;
}
-
.xl\:bui-col-span-8 {
grid-column: span 8 / span 8;
}
-
.xl\:bui-col-span-9 {
grid-column: span 9 / span 9;
}
-
.xl\:bui-col-span-10 {
grid-column: span 10 / span 10;
}
-
.xl\:bui-col-span-11 {
grid-column: span 11 / span 11;
}
-
.xl\:bui-col-span-12 {
grid-column: span 12 / span 12;
}
-
.xl\:bui-col-span-auto {
- grid-column: span auto / span auto;
+ grid-column: span auto/span auto;
}
-
.xl\:bui-col-start-1 {
grid-column-start: 1;
}
-
.xl\:bui-col-start-2 {
grid-column-start: 2;
}
-
.xl\:bui-col-start-3 {
grid-column-start: 3;
}
-
.xl\:bui-col-start-4 {
grid-column-start: 4;
}
-
.xl\:bui-col-start-5 {
grid-column-start: 5;
}
-
.xl\:bui-col-start-6 {
grid-column-start: 6;
}
-
.xl\:bui-col-start-7 {
grid-column-start: 7;
}
-
.xl\:bui-col-start-8 {
grid-column-start: 8;
}
-
.xl\:bui-col-start-9 {
grid-column-start: 9;
}
-
.xl\:bui-col-start-10 {
grid-column-start: 10;
}
-
.xl\:bui-col-start-11 {
grid-column-start: 11;
}
-
.xl\:bui-col-start-12 {
grid-column-start: 12;
}
-
.xl\:bui-col-start-13 {
grid-column-start: 13;
}
-
.xl\:bui-col-start-auto {
grid-column-start: auto;
}
-
.xl\:bui-col-end-1 {
grid-column-end: 1;
}
-
.xl\:bui-col-end-2 {
grid-column-end: 2;
}
-
.xl\:bui-col-end-3 {
grid-column-end: 3;
}
-
.xl\:bui-col-end-4 {
grid-column-end: 4;
}
-
.xl\:bui-col-end-5 {
grid-column-end: 5;
}
-
.xl\:bui-col-end-6 {
grid-column-end: 6;
}
-
.xl\:bui-col-end-7 {
grid-column-end: 7;
}
-
.xl\:bui-col-end-8 {
grid-column-end: 8;
}
-
.xl\:bui-col-end-9 {
grid-column-end: 9;
}
-
.xl\:bui-col-end-10 {
grid-column-end: 10;
}
-
.xl\:bui-col-end-11 {
grid-column-end: 11;
}
-
.xl\:bui-col-end-12 {
grid-column-end: 12;
}
-
.xl\:bui-col-end-13 {
grid-column-end: 13;
}
-
.xl\:bui-col-end-auto {
grid-column-end: auto;
}
-
.xl\:bui-row-span-1 {
grid-row: span 1 / span 1;
}
-
.xl\:bui-row-span-2 {
grid-row: span 2 / span 2;
}
-
.xl\:bui-row-span-3 {
grid-row: span 3 / span 3;
}
-
.xl\:bui-row-span-4 {
grid-row: span 4 / span 4;
}
-
.xl\:bui-row-span-5 {
grid-row: span 5 / span 5;
}
-
.xl\:bui-row-span-6 {
grid-row: span 6 / span 6;
}
-
.xl\:bui-row-span-7 {
grid-row: span 7 / span 7;
}
-
.xl\:bui-row-span-8 {
grid-row: span 8 / span 8;
}
-
.xl\:bui-row-span-9 {
grid-row: span 9 / span 9;
}
-
.xl\:bui-row-span-10 {
grid-row: span 10 / span 10;
}
-
.xl\:bui-row-span-11 {
grid-row: span 11 / span 11;
}
-
.xl\:bui-row-span-12 {
grid-row: span 12 / span 12;
}
-
.xl\:bui-row-span-auto {
- grid-row: span auto / span auto;
+ grid-row: span auto/span auto;
}
}
-
.bui-gap {
gap: var(--gap);
}
-
.bui-gap-0\.5 {
gap: var(--bui-space-0_5);
}
-
.bui-gap-1 {
gap: var(--bui-space-1);
}
-
.bui-gap-1\.5 {
gap: var(--bui-space-1_5);
}
-
.bui-gap-2 {
gap: var(--bui-space-2);
}
-
.bui-gap-3 {
gap: var(--bui-space-3);
}
-
.bui-gap-4 {
gap: var(--bui-space-4);
}
-
.bui-gap-5 {
gap: var(--bui-space-5);
}
-
.bui-gap-6 {
gap: var(--bui-space-6);
}
-
.bui-gap-7 {
gap: var(--bui-space-7);
}
-
.bui-gap-8 {
gap: var(--bui-space-8);
}
-
.bui-gap-9 {
gap: var(--bui-space-9);
}
-
.bui-gap-10 {
gap: var(--bui-space-10);
}
-
.bui-gap-11 {
gap: var(--bui-space-11);
}
-
.bui-gap-12 {
gap: var(--bui-space-12);
}
-
.bui-gap-13 {
gap: var(--bui-space-13);
}
-
.bui-gap-14 {
gap: var(--bui-space-14);
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-gap {
gap: var(--gap-xs);
}
-
.xs\:bui-gap-0\.5 {
gap: var(--bui-space-0_5);
}
-
.xs\:bui-gap-1 {
gap: var(--bui-space-1);
}
-
.xs\:bui-gap-1\.5 {
gap: var(--bui-space-1_5);
}
-
.xs\:bui-gap-2 {
gap: var(--bui-space-2);
}
-
.xs\:bui-gap-3 {
gap: var(--bui-space-3);
}
-
.xs\:bui-gap-4 {
gap: var(--bui-space-4);
}
-
.xs\:bui-gap-5 {
gap: var(--bui-space-5);
}
-
.xs\:bui-gap-6 {
gap: var(--bui-space-6);
}
-
.xs\:bui-gap-7 {
gap: var(--bui-space-7);
}
-
.xs\:bui-gap-8 {
gap: var(--bui-space-8);
}
-
.xs\:bui-gap-9 {
gap: var(--bui-space-9);
}
-
.xs\:bui-gap-10 {
gap: var(--bui-space-10);
}
-
.xs\:bui-gap-11 {
gap: var(--bui-space-11);
}
-
.xs\:bui-gap-12 {
gap: var(--bui-space-12);
}
-
.xs\:bui-gap-13 {
gap: var(--bui-space-13);
}
-
.xs\:bui-gap-14 {
gap: var(--bui-space-14);
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-gap {
gap: var(--gap-sm);
}
-
.sm\:bui-gap-0\.5 {
gap: var(--bui-space-0_5);
}
-
.sm\:bui-gap-1 {
gap: var(--bui-space-1);
}
-
.sm\:bui-gap-1\.5 {
gap: var(--bui-space-1_5);
}
-
.sm\:bui-gap-2 {
gap: var(--bui-space-2);
}
-
.sm\:bui-gap-3 {
gap: var(--bui-space-3);
}
-
.sm\:bui-gap-4 {
gap: var(--bui-space-4);
}
-
.sm\:bui-gap-5 {
gap: var(--bui-space-5);
}
-
.sm\:bui-gap-6 {
gap: var(--bui-space-6);
}
-
.sm\:bui-gap-7 {
gap: var(--bui-space-7);
}
-
.sm\:bui-gap-8 {
gap: var(--bui-space-8);
}
-
.sm\:bui-gap-9 {
gap: var(--bui-space-9);
}
-
.sm\:bui-gap-10 {
gap: var(--bui-space-10);
}
-
.sm\:bui-gap-11 {
gap: var(--bui-space-11);
}
-
.sm\:bui-gap-12 {
gap: var(--bui-space-12);
}
-
.sm\:bui-gap-13 {
gap: var(--bui-space-13);
}
-
.sm\:bui-gap-14 {
gap: var(--bui-space-14);
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-gap {
gap: var(--gap-md);
}
-
.md\:bui-gap-0\.5 {
gap: var(--bui-space-0_5);
}
-
.md\:bui-gap-1 {
gap: var(--bui-space-1);
}
-
.md\:bui-gap-1\.5 {
gap: var(--bui-space-1_5);
}
-
.md\:bui-gap-2 {
gap: var(--bui-space-2);
}
-
.md\:bui-gap-3 {
gap: var(--bui-space-3);
}
-
.md\:bui-gap-4 {
gap: var(--bui-space-4);
}
-
.md\:bui-gap-5 {
gap: var(--bui-space-5);
}
-
.md\:bui-gap-6 {
gap: var(--bui-space-6);
}
-
.md\:bui-gap-7 {
gap: var(--bui-space-7);
}
-
.md\:bui-gap-8 {
gap: var(--bui-space-8);
}
-
.md\:bui-gap-9 {
gap: var(--bui-space-9);
}
-
.md\:bui-gap-10 {
gap: var(--bui-space-10);
}
-
.md\:bui-gap-11 {
gap: var(--bui-space-11);
}
-
.md\:bui-gap-12 {
gap: var(--bui-space-12);
}
-
.md\:bui-gap-13 {
gap: var(--bui-space-13);
}
-
.md\:bui-gap-14 {
gap: var(--bui-space-14);
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-gap {
gap: var(--gap-lg);
}
-
.lg\:bui-gap-0\.5 {
gap: var(--bui-space-0_5);
}
-
.lg\:bui-gap-1 {
gap: var(--bui-space-1);
}
-
.lg\:bui-gap-1\.5 {
gap: var(--bui-space-1_5);
}
-
.lg\:bui-gap-2 {
gap: var(--bui-space-2);
}
-
.lg\:bui-gap-3 {
gap: var(--bui-space-3);
}
-
.lg\:bui-gap-4 {
gap: var(--bui-space-4);
}
-
.lg\:bui-gap-5 {
gap: var(--bui-space-5);
}
-
.lg\:bui-gap-6 {
gap: var(--bui-space-6);
}
-
.lg\:bui-gap-7 {
gap: var(--bui-space-7);
}
-
.lg\:bui-gap-8 {
gap: var(--bui-space-8);
}
-
.lg\:bui-gap-9 {
gap: var(--bui-space-9);
}
-
.lg\:bui-gap-10 {
gap: var(--bui-space-10);
}
-
.lg\:bui-gap-11 {
gap: var(--bui-space-11);
}
-
.lg\:bui-gap-12 {
gap: var(--bui-space-12);
}
-
.lg\:bui-gap-13 {
gap: var(--bui-space-13);
}
-
.lg\:bui-gap-14 {
gap: var(--bui-space-14);
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-gap {
gap: var(--gap-xl);
}
-
.xl\:bui-gap-0\.5 {
gap: var(--bui-space-0_5);
}
-
.xl\:bui-gap-1 {
gap: var(--bui-space-1);
}
-
.xl\:bui-gap-1\.5 {
gap: var(--bui-space-1_5);
}
-
.xl\:bui-gap-2 {
gap: var(--bui-space-2);
}
-
.xl\:bui-gap-3 {
gap: var(--bui-space-3);
}
-
.xl\:bui-gap-4 {
gap: var(--bui-space-4);
}
-
.xl\:bui-gap-5 {
gap: var(--bui-space-5);
}
-
.xl\:bui-gap-6 {
gap: var(--bui-space-6);
}
-
.xl\:bui-gap-7 {
gap: var(--bui-space-7);
}
-
.xl\:bui-gap-8 {
gap: var(--bui-space-8);
}
-
.xl\:bui-gap-9 {
gap: var(--bui-space-9);
}
-
.xl\:bui-gap-10 {
gap: var(--bui-space-10);
}
-
.xl\:bui-gap-11 {
gap: var(--bui-space-11);
}
-
.xl\:bui-gap-12 {
gap: var(--bui-space-12);
}
-
.xl\:bui-gap-13 {
gap: var(--bui-space-13);
}
-
.xl\:bui-gap-14 {
gap: var(--bui-space-14);
}
}
-
.bui-align-start {
align-items: start;
}
-
.bui-align-center {
align-items: center;
}
-
.bui-align-end {
align-items: end;
}
-
.bui-align-baseline {
align-items: baseline;
}
-
.bui-align-stretch {
align-items: stretch;
}
-
.bui-jc-start {
justify-content: start;
}
-
.bui-jc-center {
justify-content: center;
}
-
.bui-jc-end {
justify-content: end;
}
-
.bui-jc-between {
justify-content: space-between;
}
-
.bui-fd-row {
flex-direction: row;
}
-
.bui-fd-column {
flex-direction: column;
}
-
.bui-fd-row-reverse {
flex-direction: row-reverse;
}
-
.bui-fd-column-reverse {
flex-direction: column-reverse;
}
-
- @media (width >= 640px) {
+ @media (width>=640px) {
.xs\:bui-align-start {
align-items: start;
}
-
.xs\:bui-align-center {
align-items: center;
}
-
.xs\:bui-align-end {
align-items: end;
}
-
.xs\:bui-align-stretch {
align-items: stretch;
}
-
.xs\:bui-jc-start {
justify-content: start;
}
-
.xs\:bui-jc-center {
justify-content: center;
}
-
.xs\:bui-jc-end {
justify-content: end;
}
-
.xs\:bui-jc-between {
justify-content: space-between;
}
-
.xs\:bui-fd-row {
flex-direction: row;
}
-
.xs\:bui-fd-column {
flex-direction: column;
}
-
.xs\:bui-fd-row-reverse {
flex-direction: row-reverse;
}
-
.xs\:bui-fd-column-reverse {
flex-direction: column-reverse;
}
}
-
- @media (width >= 768px) {
+ @media (width>=768px) {
.sm\:bui-align-start {
align-items: start;
}
-
.sm\:bui-align-center {
align-items: center;
}
-
.sm\:bui-align-end {
align-items: end;
}
-
.sm\:bui-align-stretch {
align-items: stretch;
}
-
.sm\:bui-jc-start {
justify-content: start;
}
-
.sm\:bui-jc-center {
justify-content: center;
}
-
.sm\:bui-jc-end {
justify-content: end;
}
-
.sm\:bui-jc-between {
justify-content: space-between;
}
-
.sm\:bui-fd-row {
flex-direction: row;
}
-
.sm\:bui-fd-column {
flex-direction: column;
}
-
.sm\:bui-fd-row-reverse {
flex-direction: row-reverse;
}
-
.sm\:bui-fd-column-reverse {
flex-direction: column-reverse;
}
}
-
- @media (width >= 1024px) {
+ @media (width>=1024px) {
.md\:bui-align-start {
align-items: start;
}
-
.md\:bui-align-center {
align-items: center;
}
-
.md\:bui-align-end {
align-items: end;
}
-
.md\:bui-align-stretch {
align-items: stretch;
}
-
.md\:bui-jc-start {
justify-content: start;
}
-
.md\:bui-jc-center {
justify-content: center;
}
-
.md\:bui-jc-end {
justify-content: end;
}
-
.md\:bui-jc-between {
justify-content: space-between;
}
-
.md\:bui-fd-row {
flex-direction: row;
}
-
.md\:bui-fd-column {
flex-direction: column;
}
-
.md\:bui-fd-row-reverse {
flex-direction: row-reverse;
}
-
.md\:bui-fd-column-reverse {
flex-direction: column-reverse;
}
}
-
- @media (width >= 1280px) {
+ @media (width>=1280px) {
.lg\:bui-align-start {
align-items: start;
}
-
.lg\:bui-align-center {
align-items: center;
}
-
.lg\:bui-align-end {
align-items: end;
}
-
.lg\:bui-align-stretch {
align-items: stretch;
}
-
.lg\:bui-jc-start {
justify-content: start;
}
-
.lg\:bui-jc-center {
justify-content: center;
}
-
.lg\:bui-jc-end {
justify-content: end;
}
-
.lg\:bui-jc-between {
justify-content: space-between;
}
-
.lg\:bui-fd-row {
flex-direction: row;
}
-
.lg\:bui-fd-column {
flex-direction: column;
}
-
.lg\:bui-fd-row-reverse {
flex-direction: row-reverse;
}
-
.lg\:bui-fd-column-reverse {
flex-direction: column-reverse;
}
}
-
- @media (width >= 1536px) {
+ @media (width>=1536px) {
.xl\:bui-align-start {
align-items: start;
}
-
.xl\:bui-align-center {
align-items: center;
}
-
.xl\:bui-align-end {
align-items: end;
}
-
.xl\:bui-align-stretch {
align-items: stretch;
}
-
.xl\:bui-jc-start {
justify-content: start;
}
-
.xl\:bui-jc-center {
justify-content: center;
}
-
.xl\:bui-jc-end {
justify-content: end;
}
-
.xl\:bui-jc-between {
justify-content: space-between;
}
-
.xl\:bui-fd-row {
flex-direction: row;
}
-
.xl\:bui-fd-column {
flex-direction: column;
}
-
.xl\:bui-fd-row-reverse {
flex-direction: row-reverse;
}
-
.xl\:bui-fd-column-reverse {
flex-direction: column-reverse;
}
diff --git a/docs-ui/src/css/theme-spotify.css b/docs-ui/src/css/theme-spotify.css
new file mode 100644
index 0000000000..64afbb6d75
--- /dev/null
+++ b/docs-ui/src/css/theme-spotify.css
@@ -0,0 +1,233 @@
+@font-face {
+ font-family: CircularSpTitle;
+ font-weight: 900;
+ font-display: swap;
+ unicode-range: U+0, U+D, U+20-7E, U+A0-17E, U+18F, U+192, U+1A0-1A1, U+1AF-1B0,
+ U+1B5-1B6, U+1C4-1C6, U+1F1-1F3, U+1FA-1FF, U+218-21B, U+237, U+259,
+ U+2BB-2BC, U+2C6-2C7, U+2C9, U+2D8-2DD, U+300-301, U+303, U+309, U+323,
+ U+394, U+3A9, U+3BC, U+3C0, U+1E80-1E85, U+1E8A-1E8B, U+1EA0-1EF9, U+1FD6,
+ U+2007-2008, U+200B, U+2010-2011, U+2013-2014, U+2018-201A, U+201C-201E,
+ U+2020-2022, U+2026, U+2030, U+2032-2033, U+2039-203A, U+2042, U+2044,
+ U+2051, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+2113, U+2117,
+ U+2122, U+2126, U+2160-2169, U+216C-216F, U+2190-2193, U+2196-2199, U+21A9,
+ U+21B0-21B5, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215,
+ U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22C5, U+24C5,
+ U+25A0-25A1, U+25AF, U+25B2-25B3, U+25CA-25CB, U+25CF, U+262E, U+2713,
+ U+2715, U+2780-2788, U+E000, U+E002, U+F6C3, U+FB00-FB04, U+FEFF, U+FF0C,
+ U+FF0E, U+FF1A-FF1B, U+FFFF;
+ src: url(https://encore.scdn.co/fonts/CircularSpTitle-Black-4588c99025b967475c31695b0743dd1a.woff2)
+ format('woff2'),
+ url(https://encore.scdn.co/fonts/CircularSpTitle-Black-506746f387a26f25aa3d023b3e501d34.woff)
+ format('woff');
+}
+@font-face {
+ font-family: CircularSpTitle;
+ font-weight: 700;
+ font-display: swap;
+ unicode-range: U+0, U+D, U+20-7E, U+A0-17E, U+18F, U+192, U+1A0-1A1, U+1AF-1B0,
+ U+1B5-1B6, U+1C4-1C6, U+1F1-1F3, U+1FA-1FF, U+218-21B, U+237, U+259,
+ U+2BB-2BC, U+2C6-2C7, U+2C9, U+2D8-2DD, U+300-301, U+303, U+309, U+323,
+ U+394, U+3A9, U+3BC, U+3C0, U+1E80-1E85, U+1E8A-1E8B, U+1EA0-1EF9, U+1FD6,
+ U+2007-2008, U+200B, U+2010-2011, U+2013-2014, U+2018-201A, U+201C-201E,
+ U+2020-2022, U+2026, U+2030, U+2032-2033, U+2039-203A, U+2042, U+2044,
+ U+2051, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+2113, U+2117,
+ U+2122, U+2126, U+2160-2169, U+216C-216F, U+2190-2193, U+2196-2199, U+21A9,
+ U+21B0-21B5, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215,
+ U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22C5, U+24C5,
+ U+25A0-25A1, U+25AF, U+25B2-25B3, U+25CA-25CB, U+25CF, U+262E, U+2713,
+ U+2715, U+2780-2788, U+E000, U+E002, U+F6C3, U+FB00-FB04, U+FEFF, U+FF0C,
+ U+FF0E, U+FF1A-FF1B, U+FFFF;
+ src: url(https://encore.scdn.co/fonts/CircularSpTitle-Bold-b2586b06a2e1522e9d879d84c2792a58.woff2)
+ format('woff2'),
+ url(https://encore.scdn.co/fonts/CircularSpTitle-Bold-1624fb2df28c20d7203d7fb86ce8b481.woff)
+ format('woff');
+}
+@font-face {
+ font-family: CircularSp;
+ font-weight: 700;
+ font-display: swap;
+ unicode-range: U+0, U+D, U+20-7E, U+A0-17E, U+18F, U+192, U+1A0-1A1, U+1AF-1B0,
+ U+1B5-1B6, U+1C4-1C6, U+1F1-1F3, U+1FA-1FF, U+218-21B, U+237, U+259,
+ U+2BB-2BC, U+2C6-2C7, U+2C9, U+2D8-2DD, U+300-301, U+303, U+309, U+323,
+ U+394, U+3A9, U+3BC, U+3C0, U+1E80-1E85, U+1E8A-1E8B, U+1EA0-1EF9, U+1FD6,
+ U+2007-2008, U+200B, U+2010-2011, U+2013-2014, U+2018-201A, U+201C-201E,
+ U+2020-2022, U+2026, U+2030, U+2032-2033, U+2039-203A, U+2042, U+2044,
+ U+2051, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+2113, U+2117,
+ U+2122, U+2126, U+2160-2169, U+216C-216F, U+2190-2193, U+2196-2199, U+21A9,
+ U+21B0-21B5, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215,
+ U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22C5, U+24C5,
+ U+25A0-25A1, U+25AF, U+25B2-25B3, U+25CA-25CB, U+25CF, U+262E, U+2713,
+ U+2715, U+2780-2788, U+E000, U+E002, U+F6C3, U+FB00-FB04, U+FEFF, U+FF0C,
+ U+FF0E, U+FF1A-FF1B, U+FFFF;
+ src: url(https://encore.scdn.co/fonts/CircularSp-Bold-602e7aefc706aa36c6ec1324b9bbc461.woff2)
+ format('woff2'),
+ url(https://encore.scdn.co/fonts/CircularSp-Bold-856afe2da4ba4e61239b129e2c16d633.woff)
+ format('woff');
+}
+@font-face {
+ font-family: CircularSp;
+ font-weight: 400;
+ font-display: swap;
+ unicode-range: U+0, U+D, U+20-7E, U+A0-17E, U+18F, U+192, U+1A0-1A1, U+1AF-1B0,
+ U+1B5-1B6, U+1C4-1C6, U+1F1-1F3, U+1FA-1FF, U+218-21B, U+237, U+259,
+ U+2BB-2BC, U+2C6-2C7, U+2C9, U+2D8-2DD, U+300-301, U+303, U+309, U+323,
+ U+394, U+3A9, U+3BC, U+3C0, U+1E80-1E85, U+1E8A-1E8B, U+1EA0-1EF9, U+1FD6,
+ U+2007-2008, U+200B, U+2010-2011, U+2013-2014, U+2018-201A, U+201C-201E,
+ U+2020-2022, U+2026, U+2030, U+2032-2033, U+2039-203A, U+2042, U+2044,
+ U+2051, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+2113, U+2117,
+ U+2122, U+2126, U+2160-2169, U+216C-216F, U+2190-2193, U+2196-2199, U+21A9,
+ U+21B0-21B5, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215,
+ U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22C5, U+24C5,
+ U+25A0-25A1, U+25AF, U+25B2-25B3, U+25CA-25CB, U+25CF, U+262E, U+2713,
+ U+2715, U+2780-2788, U+E000, U+E002, U+F6C3, U+FB00-FB04, U+FEFF, U+FF0C,
+ U+FF0E, U+FF1A-FF1B, U+FFFF;
+ src: url(https://encore.scdn.co/fonts/CircularSp-Book-a00e99ef9996a3a157fb6b746856d04f.woff2)
+ format('woff2'),
+ url(https://encore.scdn.co/fonts/CircularSp-Book-3f73da7d35bd81c706bce7bbb84964de.woff)
+ format('woff');
+}
+@font-face {
+ font-family: CircularSp;
+ font-weight: 700;
+ font-display: swap;
+ unicode-range: U+0, U+D, U+20-7E, U+A0-17E, U+18F, U+192, U+1A0-1A1, U+1AF-1B0,
+ U+1B5-1B6, U+1C4-1C6, U+1F1-1F3, U+1FA-1FF, U+218-21B, U+237, U+259,
+ U+2BB-2BC, U+2C6-2C7, U+2C9, U+2D8-2DD, U+300-301, U+303, U+309, U+323,
+ U+394, U+3A9, U+3BC, U+3C0, U+1E80-1E85, U+1E8A-1E8B, U+1EA0-1EF9, U+1FD6,
+ U+2007-2008, U+200B, U+2010-2011, U+2013-2014, U+2018-201A, U+201C-201E,
+ U+2020-2022, U+2026, U+2030, U+2032-2033, U+2039-203A, U+2042, U+2044,
+ U+2051, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+2113, U+2117,
+ U+2122, U+2126, U+2160-2169, U+216C-216F, U+2190-2193, U+2196-2199, U+21A9,
+ U+21B0-21B5, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215,
+ U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22C5, U+24C5,
+ U+25A0-25A1, U+25AF, U+25B2-25B3, U+25CA-25CB, U+25CF, U+262E, U+2713,
+ U+2715, U+2780-2788, U+E000, U+E002, U+F6C3, U+FB00-FB04, U+FEFF, U+FF0C,
+ U+FF0E, U+FF1A-FF1B, U+FFFF;
+ src: url(https://encore.scdn.co/fonts/CircularSp-Bold-602e7aefc706aa36c6ec1324b9bbc461.woff2)
+ format('woff2'),
+ url(https://encore.scdn.co/fonts/CircularSp-Bold-856afe2da4ba4e61239b129e2c16d633.woff)
+ format('woff');
+}
+[data-theme-name='spotify'] {
+ --bui-font-text: CircularSp, CircularSp-Arab, CircularSp-Hebr, CircularSp-Cyrl,
+ CircularSp-Grek, CircularSp-Deva;
+ --bui-font-title: CircularSpTitle, CircularSp-Arab, CircularSp-Hebr,
+ CircularSp-Cyrl, CircularSp-Grek, CircularSp-Deva;
+ --bui-font-regular: CircularSp, CircularSp-Arab, CircularSp-Hebr,
+ CircularSp-Cyrl, CircularSp-Grek, CircularSp-Deva;
+ & .bui-Button {
+ border-radius: var(--bui-radius-3);
+ padding-inline: var(--bui-space-3);
+ }
+ & .bui-ButtonIcon {
+ padding: 0;
+ }
+ & .bui-MenuPopup {
+ box-sizing: border-box;
+ max-width: 21.25rem;
+ }
+ & .bui-MenuSubmenuTrigger,
+ & .bui-MenuItem {
+ height: auto;
+ min-height: 2rem;
+ }
+ & .bui-Text {
+ font-family: var(--bui-font-text);
+ }
+ & .bui-Heading {
+ font-family: var(--bui-font-title);
+ }
+ & .bui-TableRow {
+ border-radius: var(--bui-radius-4);
+ border: none;
+ }
+ & .bui-TableRow:hover td:first-child {
+ border-top-left-radius: var(--bui-radius-2);
+ border-bottom-left-radius: var(--bui-radius-2);
+ }
+ & .bui-TableRow:hover td:last-child {
+ border-top-right-radius: var(--bui-radius-2);
+ border-bottom-right-radius: var(--bui-radius-2);
+ }
+ & .bui-TableBody:before,
+ & .bui-TableBody:after {
+ line-height: var(--bui-space-1);
+ content: '';
+ display: block;
+ }
+ & .bui-TableHeader .bui-TableRow {
+ border-bottom: 1px solid var(--bui-border-2);
+ }
+ & .bui-TableHead {
+ font-size: var(--bui-font-size-2);
+ color: var(--bui-fg-secondary);
+ font-weight: var(--bui-font-weight-regular);
+ }
+ & .bui-HeaderToolbar {
+ padding-top: var(--bui-space-2);
+ padding-inline: var(--bui-space-2);
+ }
+ & .bui-HeaderToolbarWrapper {
+ border-radius: var(--bui-radius-3);
+ padding-inline: var(--bui-space-3);
+ border: none;
+ }
+ & .bui-HeaderToolbarControls {
+ right: calc(var(--bui-space-3) - 1px);
+ }
+ & .bui-HeaderTabsWrapper {
+ margin-top: var(--bui-space-2);
+ margin-inline: var(--bui-space-2);
+ border-radius: var(--bui-radius-3);
+ padding-inline: var(--bui-space-1);
+ border: none;
+ }
+ & .bui-Input {
+ border-radius: var(--bui-radius-3);
+ }
+ & .bui-Tag {
+ border-radius: var(--bui-radius-full);
+ }
+}
+[data-theme-mode='light'][data-theme-name='spotify'] {
+ --bui-bg-solid: #1ed760;
+ --bui-bg-solid-hover: #3be477;
+ --bui-bg-solid-pressed: #1abc54;
+ --bui-bg-solid-disabled: #0f6c30;
+ --bui-fg-primary: var(--bui-black);
+ --bui-fg-secondary: #757575;
+ --bui-fg-solid: var(--bui-black);
+ --bui-fg-solid-disabled: #62ab7c;
+ --bui-border-2: #d9d9d9;
+ --bui-border-danger: #f87a7a;
+ --bui-border-warning: #e36d05;
+ --bui-border-success: #53db83;
+ --bui-ring: #0003;
+ & .bui-HeaderToolbarWrapper,
+ & .bui-HeaderTabsWrapper {
+ border: 1px solid var(--bui-border-2);
+ }
+}
+[data-theme-mode='dark'][data-theme-name='spotify'] {
+ --bui-bg-app: var(--bui-black);
+ --bui-bg-solid: #1ed760;
+ --bui-bg-solid-hover: #3be477;
+ --bui-bg-solid-pressed: #1abc54;
+ --bui-bg-solid-disabled: #0f6c30;
+ --bui-bg-danger: #3b1219;
+ --bui-bg-warning: #302008;
+ --bui-bg-success: #132d21;
+ --bui-fg-primary: var(--bui-white);
+ --bui-fg-secondary: #9e9e9e;
+ --bui-fg-disabled: #575757;
+ --bui-fg-solid: var(--bui-black);
+ --bui-fg-solid-disabled: #072f15;
+ --bui-fg-danger: #e22b2b;
+ --bui-fg-warning: #e36d05;
+ --bui-fg-success: #1db954;
+ --bui-border-2: #373737;
+ --bui-border-danger: #f87a7a;
+ --bui-border-warning: #e36d05;
+ --bui-border-success: #53db83;
+ --bui-ring: #fff3;
+}
diff --git a/docs-ui/src/mdx-components.tsx b/docs-ui/src/mdx-components.tsx
index bae798bf7c..75959f2e47 100644
--- a/docs-ui/src/mdx-components.tsx
+++ b/docs-ui/src/mdx-components.tsx
@@ -81,7 +81,7 @@ export const formattedMDXComponents: MDXComponents = {
backgroundColor: 'var(--bg)',
padding: '0.2rem 0.375rem',
borderRadius: '0.25rem',
- color: 'var(--secondary)',
+ color: 'var(--primary)',
border: '1px solid var(--border)',
fontSize: '0.875rem',
}}
@@ -97,6 +97,11 @@ export const formattedMDXComponents: MDXComponents = {
{...(rest as Omit
)}
/>
),
+ table: ({ children }) => (
+
+ ),
+ th: ({ children }) => {children as ReactNode} ,
+ td: ({ children }) => {children as ReactNode} ,
};
export function useMDXComponents(components: MDXComponents): MDXComponents {
diff --git a/docs-ui/src/snippets/code-snippets.ts b/docs-ui/src/snippets/code-snippets.ts
index 57169ae32a..30d036461f 100644
--- a/docs-ui/src/snippets/code-snippets.ts
+++ b/docs-ui/src/snippets/code-snippets.ts
@@ -4,8 +4,8 @@ export const customTheme = `:root {
--bui-font-regular: system-ui;
--bui-font-weight-regular: 400;
--bui-font-weight-bold: 600;
- --bui-bg-surface-0: #f8f8f8;
- --bui-bg-surface-1: #fff;
+ --bui-bg-app: #f8f8f8;
+ --bui-bg-neutral-1: #fff;
/* ... other CSS variables */
/* Add your custom components styles here */
@@ -19,8 +19,8 @@ export const customTheme = `:root {
--bui-font-regular: system-ui;
--bui-font-weight-regular: 400;
--bui-font-weight-bold: 600;
- --bui-bg-surface-0: #f8f8f8;
- --bui-bg-surface-1: #fff;
+ --bui-bg-app: #f8f8f8;
+ --bui-bg-neutral-1: #fff;
/* ... other CSS variables */
/* Add your custom components styles here */
diff --git a/docs-ui/src/utils/changelog.ts b/docs-ui/src/utils/changelog.ts
index 0c3286d051..a99c0e8335 100644
--- a/docs-ui/src/utils/changelog.ts
+++ b/docs-ui/src/utils/changelog.ts
@@ -1,4 +1,7 @@
export * from './types';
+import { changelog_0_11_0 } from './changelogs/v0.11.0';
+import { changelog_0_10_0 } from './changelogs/v0.10.0';
+import { changelog_0_9_1 } from './changelogs/v0.9.1';
import { changelog_0_9_0 } from './changelogs/v0.9.0';
import { changelog_0_8_2 } from './changelogs/v0.8.2';
import { changelog_0_8_0 } from './changelogs/v0.8.0';
@@ -15,6 +18,9 @@ import { changelog_0_2_0 } from './changelogs/v0.2.0';
import { changelog_0_1_0 } from './changelogs/v0.1.0';
export const changelog = [
+ ...changelog_0_11_0,
+ ...changelog_0_10_0,
+ ...changelog_0_9_1,
...changelog_0_9_0,
...changelog_0_8_2,
...changelog_0_8_0,
diff --git a/docs-ui/src/utils/changelogs/v0.1.0.ts b/docs-ui/src/utils/changelogs/v0.1.0.ts
index cf333e92e9..046bb24136 100644
--- a/docs-ui/src/utils/changelogs/v0.1.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.1.0.ts
@@ -4,113 +4,57 @@ export const changelog_0_1_0: ChangelogProps[] = [
{
components: [],
version: '0.1.0',
- description: `**BREAKING**: Merged the Stack and Inline component into a single component called Flex.`,
prs: ['28634'],
- type: 'breaking',
+ description: `**BREAKING**: Merged the Stack and Inline component into a single component called Flex.`,
+ breaking: true,
commitSha: '72c9800',
},
{
components: [],
version: '0.1.0',
- description: `This is the first alpha release for Canon. As part of this release we are introducing 5 layout components and 7 components. All theming is done through CSS variables.`,
prs: ['28562'],
- type: 'breaking',
+ description: `**BREAKING**: This is the first alpha release for Canon. As part of this release we are introducing 5 layout components and 7 components. All theming is done through CSS variables.`,
+ breaking: true,
commitSha: '65f4acc',
},
{
components: [],
version: '0.1.0',
- description: `**BREAKING**: Fixing css structure and making sure that props are applying the correct styles for all responsive values.`,
prs: ['28630'],
- type: 'breaking',
+ description: `**BREAKING**: Fixing css structure and making sure that props are applying the correct styles for all responsive values.`,
+ breaking: true,
commitSha: '1e4ccce',
},
{
components: [],
version: '0.1.0',
- description: `Updated core CSS tokens and fixing the Button component accordingly.`,
prs: ['28789'],
- type: 'breaking',
+ description: `**BREAKING**: Updated core CSS tokens and fixing the Button component accordingly.`,
+ breaking: true,
commitSha: '8309bdb',
},
{
components: [],
version: '0.1.0',
- description: `Removed client directive as they are not needed in React 18.`,
prs: ['28626'],
- type: 'fix',
+ description: `Removed client directive as they are not needed in React 18.`,
+
commitSha: '989af25',
},
{
components: [],
version: '0.1.0',
- description: `Fix spacing props not being applied for custom values.`,
prs: ['28770'],
- type: 'fix',
+ description: `Fix spacing props not being applied for custom values.`,
+
commitSha: 'f44e5cf',
},
{
components: [],
version: '0.1.0',
- description: `Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.`,
prs: ['28579'],
- type: 'fix',
- commitSha: '58ec9e7',
- },
- {
- components: [],
- version: '0.1.0',
- description: `Updated core CSS tokens and fixing the Button component accordingly.`,
- prs: ['28789'],
- type: 'breaking',
- commitSha: '8309bdb',
- },
- {
- components: [],
- version: '0.1.0',
- description: `Fix spacing props not being applied for custom values.`,
- prs: ['28770'],
- type: 'fix',
- commitSha: 'f44e5cf',
- },
- {
- components: [],
- version: '0.1.0',
- description: `**BREAKING**: Merged the Stack and Inline component into a single component called Flex.`,
- prs: ['28634'],
- type: 'breaking',
- commitSha: '72c9800',
- },
- {
- components: [],
- version: '0.1.0',
- description: `**BREAKING**: Fixing css structure and making sure that props are applying the correct styles for all responsive values.`,
- prs: ['28630'],
- type: 'breaking',
- commitSha: '1e4ccce',
- },
- {
- components: [],
- version: '0.1.0',
- description: `Removed client directive as they are not needed in React 18.`,
- prs: ['28626'],
- type: 'fix',
- commitSha: '989af25',
- },
- {
- components: [],
- version: '0.1.0',
description: `Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.`,
- prs: ['28579'],
- type: 'fix',
+
commitSha: '58ec9e7',
},
- {
- components: [],
- version: '0.1.0',
- description: `This is the first alpha release for Canon. As part of this release we are introducing 5 layout components and 7 components. All theming is done through CSS variables.`,
- prs: ['28562'],
- type: 'breaking',
- commitSha: '65f4acc',
- },
];
diff --git a/docs-ui/src/utils/changelogs/v0.10.0.ts b/docs-ui/src/utils/changelogs/v0.10.0.ts
new file mode 100644
index 0000000000..6b6eb87563
--- /dev/null
+++ b/docs-ui/src/utils/changelogs/v0.10.0.ts
@@ -0,0 +1,89 @@
+import type { ChangelogProps } from '../types';
+
+export const changelog_0_10_0: ChangelogProps[] = [
+ {
+ components: [],
+ version: '0.10.0',
+ prs: ['31917'],
+ description: `**BREAKING**: The \`Cell\` component has been refactored to be a generic wrapper component that accepts \`children\` for custom cell content. The text-specific functionality (previously part of \`Cell\`) has been moved to a new \`CellText\` component.`,
+ migration: `If you were using \`Cell\` with text-specific props (\`title\`, \`description\`, \`leadingIcon\`, \`href\`), you need to update your code to use \`CellText\` instead:
+
+**Before:**
+
+\`\`\`tsx
+ | }
+ href="/path"
+/>
+\`\`\`
+
+**After:**
+
+\`\`\`tsx
+ }
+ href="/path"
+/>
+\`\`\`
+
+For custom cell content, use the new generic \`Cell\` component:
+
+\`\`\`tsx
+{/* Your custom content */} |
+\`\`\``,
+ breaking: true,
+ commitSha: '16543fa',
+ },
+ {
+ components: ['checkbox'],
+ version: '0.10.0',
+ prs: ['31904'],
+ description: `Fixed Checkbox indicator showing checkmark color when unchecked.`,
+
+ commitSha: '50b7927',
+ },
+ {
+ components: ['button-icon'],
+ version: '0.10.0',
+ prs: ['31900'],
+ description: `Fixed \`ButtonIcon\` incorrectly applying \`className\` to inner elements instead of only the root element.`,
+
+ commitSha: '5bacf55',
+ },
+ {
+ components: [],
+ version: '0.10.0',
+ prs: ['31843'],
+ description: `Fixed Table Row component to correctly handle cases where no \`href\` is provided, preventing unnecessary router provider wrapping and fixing the cursor incorrectly showing as a pointer despite the element not being a link.`,
+
+ commitSha: 'b3ad928',
+ },
+ {
+ components: ['table'],
+ version: '0.10.0',
+ prs: ['31907'],
+ description: `Added row selection support with visual state styling for hover, selected, and pressed states. Fixed checkbox rendering to only show for multi-select toggle mode.`,
+
+ commitSha: 'a20d317',
+ },
+ {
+ components: [],
+ version: '0.10.0',
+ prs: ['31817'],
+ description: `Fixed \`useTable\` hook to prioritize \`providedRowCount\` over data length for accurate row count in server-side pagination scenarios.`,
+
+ commitSha: 'fe7c751',
+ },
+ {
+ components: [],
+ version: '0.10.0',
+ prs: ['31844'],
+ description: `Fixed Table column sorting indicator to show up arrow when no sort is active, correctly indicating that clicking will sort ascending.`,
+
+ commitSha: 'c145031',
+ },
+];
diff --git a/docs-ui/src/utils/changelogs/v0.11.0.ts b/docs-ui/src/utils/changelogs/v0.11.0.ts
new file mode 100644
index 0000000000..a7dd7ab1ca
--- /dev/null
+++ b/docs-ui/src/utils/changelogs/v0.11.0.ts
@@ -0,0 +1,196 @@
+import type { ChangelogProps } from '../types';
+
+export const changelog_0_11_0: ChangelogProps[] = [
+ {
+ components: ['table'],
+ version: '0.11.0',
+ prs: ['32050'],
+ description: `**BREAKING**: Redesigned Table component with new \`useTable\` hook API.
+
+ - The \`Table\` component (React Aria wrapper) is renamed to \`TableRoot\`
+ - New high-level \`Table\` component that handles data display, pagination, sorting, and selection
+ - The \`useTable\` hook is completely redesigned with a new API supporting three pagination modes (complete, offset, cursor)
+ - New types: \`ColumnConfig\`, \`TableProps\`, \`TableItem\`, \`UseTableOptions\`, \`UseTableResult\`
+
+ New features include unified pagination modes, debounced query changes, stale data preservation during reloads, and row selection with toggle/replace behaviors.`,
+ migration: `1. Update imports and use the new \`useTable\` hook:
+
+\`\`\`diff
+-import { Table, useTable } from '@backstage/ui';
+-const { data, paginationProps } = useTable({ data: items, pagination: {...} });
++import { Table, useTable, type ColumnConfig } from '@backstage/ui';
++const { tableProps } = useTable({
++ mode: 'complete',
++ getData: () => items,
++});
+\`\`\`
+
+2. Define columns and render with the new Table API:
+
+\`\`\`diff
+-
+-
++const columns: ColumnConfig- [] = [
++ { id: 'name', label: 'Name', isRowHeader: true, cell: item =>
},
++ { id: 'type', label: 'Type', cell: item => },
++];
++
++
+\`\`\``,
+ breaking: true,
+ commitSha: '243e5e7',
+ },
+ {
+ components: [],
+ version: '0.11.0',
+ prs: ['32202'],
+ description: `**BREAKING**: Updating color tokens to match the new neutral style on different surfaces.`,
+ migration: `There's no direct replacement for the old tint tokens but you can use the new neutral set of color tokens on surface 0 or 1 as a replacement.
+
+- \`--bui-bg-tint\` can be replaced by \`--bui-bg-neutral-on-surface-0\`
+- \`--bui-bg-tint-hover\` can be replaced by \`--bui-bg-neutral-on-surface-0-hover\`
+- \`--bui-bg-tint-pressed\` can be replaced by \`--bui-bg-neutral-on-surface-0-pressed\`
+- \`--bui-bg-tint-disabled\` can be replaced by \`--bui-bg-neutral-on-surface-0-disabled\``,
+ breaking: true,
+ commitSha: '95246eb',
+ },
+ {
+ components: [],
+ version: '0.11.0',
+ prs: ['32232'],
+ description: `**BREAKING**: Introduce new \`ToggleButton\` & \`ToggleButtonGroup\` components in Backstage UI`,
+ breaking: true,
+ commitSha: 'ea0c6d8',
+ },
+ {
+ components: [],
+ version: '0.11.0',
+ prs: ['32200'],
+ description: `**BREAKING**: Renamed CSS variable \`--bui-bg\` to \`--bui-bg-surface-0\` for consistency.`,
+ breaking: true,
+ commitSha: '4ea1d15',
+ },
+ {
+ components: ['box'],
+ version: '0.11.0',
+ prs: ['32203'],
+ description: `Fixes app background color on dark mode.`,
+
+ commitSha: '1880402',
+ },
+ {
+ components: ['checkbox'],
+ version: '0.11.0',
+ prs: ['32371'],
+ description: `Added indeterminate state support to the Checkbox component for handling partial selection scenarios like table header checkboxes.`,
+
+ commitSha: 'd2fdded',
+ },
+ {
+ components: ['select'],
+ version: '0.11.0',
+ prs: ['32337'],
+ description: `Added missing \`aria-label\` attributes to \`SearchField\` components in \`Select\`, \`MenuAutocomplete\`, and \`MenuAutocompleteListbox\` to fix accessibility warnings.`,
+
+ commitSha: '4fb15d2',
+ },
+ {
+ components: ['button'],
+ version: '0.11.0',
+ prs: ['32297'],
+ description: `Fixes disabled state in primary and secondary buttons in Backstage UI.`,
+
+ commitSha: '21c87cc',
+ },
+ {
+ components: [],
+ version: '0.11.0',
+ prs: ['32185'],
+ description: `build(deps-dev): bump \`storybook\` from 10.1.9 to 10.1.10`,
+
+ commitSha: '9c76682',
+ },
+ {
+ components: ['button'],
+ version: '0.11.0',
+ prs: ['32385'],
+ description: `Fixed disabled tertiary buttons incorrectly showing hover effects on surfaces.`,
+
+ commitSha: 'de80336',
+ },
+ {
+ components: [],
+ version: '0.11.0',
+ prs: ['32313'],
+ description: `Added new Popover component for Backstage UI with automatic overflow handling, and full placement support. Also introduced \`--bui-shadow\` token for consistent elevation styling across overlay components (Popover, Tooltip, Menu).`,
+
+ commitSha: '133d5c6',
+ },
+ {
+ components: ['table'],
+ version: '0.11.0',
+ prs: ['32350'],
+ description: `Fixed Table sorting indicator not being visible when a column is actively sorted.`,
+
+ commitSha: '973c839',
+ },
+ {
+ components: ['menu'],
+ version: '0.11.0',
+ prs: ['32347'],
+ description: `Fixed Menu component trigger button not toggling correctly. Removed custom click-outside handler that was interfering with React Aria's built-in state management, allowing the menu to properly open and close when clicking the trigger button.`,
+
+ commitSha: 'df40cfc',
+ },
+ {
+ components: ['table'],
+ version: '0.11.0',
+ prs: ['32336'],
+ description: `Added support for column width configuration in Table component. Columns now accept \`width\`, \`defaultWidth\`, \`minWidth\`, and \`maxWidth\` props for responsive layout control.`,
+
+ commitSha: 'b01ab96',
+ },
+ {
+ components: ['searchfield'],
+ version: '0.11.0',
+ prs: ['32123'],
+ description: `Fixed SearchField \`startCollapsed\` prop not working correctly in Backstage UI. The field now properly starts in a collapsed state, expands when clicked and focused, and collapses back when unfocused with no input. Also fixed CSS logic to work correctly in all layout contexts (flex row, flex column, and regular containers).`,
+
+ commitSha: 'b4a4911',
+ },
+ {
+ components: [],
+ version: '0.11.0',
+ prs: ['32265'],
+ description: `Fixed \`Link\` component causing hard page refreshes for internal routes. The component now properly uses React Router's navigation instead of full page reloads.`,
+
+ commitSha: 'b3253b6',
+ },
+ {
+ components: ['table'],
+ version: '0.11.0',
+ prs: ['32321'],
+ description: `Added support for custom pagination options in \`useTable\` hook and \`Table\` component. You can now configure \`pageSizeOptions\` to customize the page size dropdown, and hook into pagination events via \`onPageSizeChange\`, \`onNextPage\`, and \`onPreviousPage\` callbacks. When \`pageSize\` doesn't match any option, the first option is used and a warning is logged.`,
+
+ commitSha: 'fe7fe69',
+ },
+ {
+ components: ['table'],
+ version: '0.11.0',
+ prs: ['32369'],
+ description: `Fixed missing border styles on table selection cells in multi-select mode.`,
+
+ commitSha: 'cfac8a4',
+ },
+ {
+ components: ['table'],
+ version: '0.11.0',
+ prs: ['32342'],
+ description: `Added \`className\` and \`style\` props to the \`Table\` component.`,
+
+ commitSha: '2532d2a',
+ },
+];
diff --git a/docs-ui/src/utils/changelogs/v0.2.0.ts b/docs-ui/src/utils/changelogs/v0.2.0.ts
index b90cec0309..9f39331898 100644
--- a/docs-ui/src/utils/changelogs/v0.2.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.2.0.ts
@@ -2,97 +2,91 @@ import type { ChangelogProps } from '../types';
export const changelog_0_2_0: ChangelogProps[] = [
{
- components: ['menu'],
+ components: [],
version: '0.2.0',
- description: 'New `Menu` component',
- prs: ['29151'],
- type: 'new',
+ prs: ['28961'],
+ description: `**BREAKING**: Fix CSS imports and move CSS outputs out of the dist folder.`,
+ breaking: true,
+ commitSha: '5a5db29',
},
{
- components: ['button-icon'],
+ components: [],
+ version: '0.2.0',
+ prs: ['29241'],
+ description: `**BREAKING**: Added a new Tooltip component to Canon.`,
+ breaking: true,
+ commitSha: '4557beb',
+ },
+ {
+ components: [],
version: '0.2.0',
- description: 'New `IconButton` component',
prs: ['29239'],
- type: 'new',
+ description: `**BREAKING**: We added a new IconButton component with fixed sizes showcasing a single icon.`,
+ breaking: true,
+ commitSha: '1e4dfdb',
},
{
- components: ['scrollarea'],
+ components: [],
version: '0.2.0',
- description: 'New `ScrollArea` component',
- prs: ['29240'],
- type: 'new',
- },
- {
- components: ['button', 'checkbox'],
- version: '0.2.0',
- description: 'Improve `Button` & `Checkbox` styles',
- prs: ['29127', '28789'],
- },
- {
- components: ['text'],
- version: '0.2.0',
- description: 'Improve `Text` styles',
- prs: ['29200'],
- },
- {
- components: ['icon'],
- version: '0.2.0',
- description: 'Renamed `CanonProvider` to `IconProvider`',
- prs: ['29002'],
- },
- {
- components: ['icon'],
- version: '0.2.0',
- description: 'Added about 40+ new icons',
prs: ['29264'],
+ description: `**BREAKING**: Added about 40 new icons to Canon.`,
+ breaking: true,
+ commitSha: 'e8d12f9',
},
{
components: [],
version: '0.2.0',
- description: 'Simplified styling into a unique styles.css file',
- prs: ['29199'],
+ prs: ['29002'],
+ description: `**BREAKING**: We are renaming CanonProvider to IconProvider to improve clarity on how to override icons.`,
+ breaking: true,
+ commitSha: '8689010',
},
{
components: [],
version: '0.2.0',
- description: 'Added global styles to Backstage',
- prs: ['29137'],
- type: 'new',
+ prs: ['29151'],
+ description: `**BREAKING**: Added a new Menu component to Canon.`,
+ breaking: true,
+ commitSha: 'bf319b7',
},
{
components: [],
version: '0.2.0',
- description: 'Update global CSS tokens',
- prs: ['28804'],
+ prs: ['29200'],
+ description: `**BREAKING**: Updating styles for Text and Link components as well as global surface tokens.`,
+ breaking: true,
+ commitSha: 'cb7e99d',
},
{
- components: ['flex'],
+ components: [],
version: '0.2.0',
- description: 'Merge Stack + Inline into Flex',
- prs: ['28634'],
+ prs: ['29240'],
+ description: `**BREAKING**: Added a new ScrollArea component for Canon.`,
+ breaking: true,
+ commitSha: 'bd8520d',
},
{
- components: ['button'],
+ components: [],
version: '0.2.0',
- description: 'Improve `Button` types',
prs: ['29205'],
+ description: `Fix Button types that was preventing the use of native attributes like onClick.`,
+
+ commitSha: '56850ca',
},
{
components: [],
version: '0.2.0',
- description: 'Move font weight and family back to each components',
prs: ['28972'],
+ description: `To avoid conflicts with Backstage, we removed global styles and set font-family and font-weight for each components.`,
+
+ commitSha: '89e8686',
},
{
components: [],
version: '0.2.0',
- description: 'Fix custom values in spacing props',
- prs: ['28770'],
- },
- {
- components: [],
- version: '0.2.0',
- description: 'Multiple updates on the docs site',
- prs: ['28760'],
+ prs: ['29137'],
+ description: `Introducing Canon to Backstage. Canon styling system is based on pure CSS. We are adding our styles.css at the top of your Backstage instance.`,
+
+ commitSha: '05e9d41',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.2.1.ts b/docs-ui/src/utils/changelogs/v0.2.1.ts
index cbf0f9be0f..0815a886c3 100644
--- a/docs-ui/src/utils/changelogs/v0.2.1.ts
+++ b/docs-ui/src/utils/changelogs/v0.2.1.ts
@@ -4,41 +4,41 @@ export const changelog_0_2_1: ChangelogProps[] = [
{
components: [],
version: '0.2.1',
- description: `Internal refactor and fixes to the prop extraction logic for layout components.`,
prs: ['29389'],
- type: 'fix',
+ description: `Internal refactor and fixes to the prop extraction logic for layout components.`,
+
commitSha: 'f7cb538',
},
{
components: [],
version: '0.2.1',
- description: `Fix types on the Icon component.`,
prs: ['29306'],
- type: 'fix',
+ description: `Fix types on the Icon component.`,
+
commitSha: '5e80f0b',
},
{
components: [],
version: '0.2.1',
- description: `Updated styles for the Menu component in Canon.`,
prs: ['29351'],
- type: 'fix',
+ description: `Updated styles for the Menu component in Canon.`,
+
commitSha: '6af7b16',
},
{
components: [],
version: '0.2.1',
- description: `Add global CSS reset for anchor tags.`,
prs: ['29357'],
- type: 'new',
+ description: `Add global CSS reset for anchor tags.`,
+
commitSha: '513477f',
},
{
components: [],
version: '0.2.1',
- description: `Fix the Icon component when the name is not found to return null instead of an empty SVG.`,
prs: ['29280'],
- type: 'fix',
+ description: `Fix the Icon component when the name is not found to return null instead of an empty SVG.`,
+
commitSha: '05a5003',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.3.0.ts b/docs-ui/src/utils/changelogs/v0.3.0.ts
index 750ad292cf..4a2e9faa15 100644
--- a/docs-ui/src/utils/changelogs/v0.3.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.3.0.ts
@@ -1,139 +1,182 @@
import type { ChangelogProps } from '../types';
export const changelog_0_3_0: ChangelogProps[] = [
- {
- components: ['datatable'],
- version: '0.3.0',
- description: 'Add `DataTable` component',
- prs: ['29484', '29603'],
- type: 'new',
- },
- {
- components: ['select'],
- version: '0.3.0',
- description: 'Add `Select` component',
- prs: ['29440'],
- type: 'new',
- },
- {
- components: ['avatar'],
- version: '0.3.0',
- description: 'Add `Avatar` component',
- prs: ['29594'],
- type: 'new',
- },
- {
- components: ['collapsible'],
- version: '0.3.0',
- description: 'Add `Collapsible` component',
- prs: ['29617'],
- type: 'new',
- },
- {
- components: ['textfield'],
- version: '0.3.0',
- description: 'Add `TextField` component instead of `Field` + `Input`',
- prs: ['29364'],
- type: 'new',
- },
- {
- components: ['datatable'],
- version: '0.3.0',
- description: 'Add `TableCellProfile`',
- prs: ['29600'],
- type: 'new',
- },
{
components: [],
version: '0.3.0',
- description: 'Add breakpoint hooks - `up()` and `down()`',
- prs: ['29564'],
- type: 'new',
- },
- {
- components: [],
- version: '0.3.0',
- description: 'Add gray scale css tokens',
- prs: ['29543'],
- type: 'new',
- },
- {
- components: [],
- version: '0.3.0',
- description:
- 'Update CSS styling API using `[data-___]` instead of class names for props',
prs: ['29560'],
+ description: `**BREAKING**: Improve class name structure using data attributes instead of class names.`,
+ breaking: true,
+ commitSha: 'df4e292',
},
{
- components: ['checkbox'],
+ components: [],
version: '0.3.0',
- description: 'Update `Checkbox` dark mode',
- prs: ['29544'],
- },
- {
- components: ['container'],
- version: '0.3.0',
- description: 'Update `Container` styles',
- prs: ['29475'],
- },
- {
- components: ['menu'],
- version: '0.3.0',
- description: 'Update `Menu` styles',
- prs: ['29351'],
- },
- {
- components: ['select'],
- version: '0.3.0',
- description: 'Fix `Select` styles on small sizes + with long option names',
- prs: ['29545'],
- },
- {
- components: ['link'],
- version: '0.3.0',
- description: 'Fix render prop on `Link`',
- prs: ['29247'],
- },
- {
- components: ['textfield', 'select'],
- version: '0.3.0',
- description: 'Remove `Field` from `TextField` + `Select`',
prs: ['29482'],
- },
- {
- components: ['text', 'heading'],
- version: '0.3.0',
- description: 'Update `textDecoration` to `none` on `Text` / `Heading`',
- prs: ['29357'],
- },
- {
- components: ['text', 'heading'],
- version: '0.3.0',
- description: 'Update `textDecoration` to `none` on `Text` / `Heading`',
- prs: ['29357'],
+ description: `**BREAKING**: Updated TextField and Select component to work with React Hook Form.`,
+ breaking: true,
+ commitSha: 'f038613',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29440'],
+ description: `**BREAKING**: Add new Select component for Canon`,
+ breaking: true,
+ commitSha: '1b0cf40',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29364'],
+ description: `**BREAKING**: Added a new TextField component to replace the Field and Input component. After feedback, it became clear that we needed to build a more opinionated version to avoid any problem in the future.`,
+ breaking: true,
+ commitSha: '5074d61',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29351'],
+ description: `Updated styles for the Menu component in Canon.`,
+
+ commitSha: '6af7b16',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29544'],
+ description: `Fix Checkbox styles on dark theme in Canon.`,
+
+ commitSha: 'bcbc593',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29564'],
+ description: `Add new breakpoint helpers up(), down() and current breakpoint to help you use our breakpoints in your React components.`,
+
+ commitSha: 'e7efb7d',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29389'],
+ description: `Internal refactor and fixes to the prop extraction logic for layout components.`,
+
+ commitSha: 'f7cb538',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29617'],
+ description: `Add new Collapsible component for Canon.`,
+
+ commitSha: '35b36ec',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29499'],
+ description: `Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
+
+ https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html`,
+
+ commitSha: 'a47fd39',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29357'],
+ description: `Add global CSS reset for anchor tags.`,
+
+ commitSha: '513477f',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29475'],
+ description: `Improved Container styles, changing our max-width to 120rem and improving padding on smaller screens.`,
+
+ commitSha: '24f0e08',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29594'],
+ description: `Add new Avatar component to Canon.`,
+
+ commitSha: '851779d',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29600'],
+ description: `Add new TableCellProfile component for Table and DataTable in Canon.`,
+
+ commitSha: 'ec5ebd1',
},
{
components: [],
version: '0.3.0',
- description: 'Docs - Use stories from Storybook for all examples in Nextjs',
prs: ['29306'],
+ description: `Fix types on the Icon component.`,
+
+ commitSha: '5e80f0b',
},
{
components: [],
version: '0.3.0',
- description: 'Docs - Add release page (this one 🤗)',
- prs: ['29461'],
+ prs: ['29484'],
+ description: `Add new DataTable component and update Table component styles.`,
+
+ commitSha: '0e654bf',
},
{
components: [],
version: '0.3.0',
- description: 'Docs - Add docs for Menu, Link',
- prs: ['29576'],
+ prs: ['29466'],
+ description: `Move styles to the root of the TextField component.`,
+
+ commitSha: '7ae28ba',
},
{
components: [],
version: '0.3.0',
- description: 'Fix CSS watch mode',
- prs: ['29352'],
+ prs: ['29247'],
+ description: `We added a render prop to the Link component to make sure it can work with React Router.`,
+
+ commitSha: '4fe5b08',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29545'],
+ description: `Fix Select styles on small sizes + with long option names in Canon.`,
+
+ commitSha: '74d463c',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29543'],
+ description: `Added a new gray scale for Canon for both light and dark theme.`,
+
+ commitSha: 'f25a5be',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29603'],
+ description: `Add support for column sizing in DataTable.`,
+
+ commitSha: '5ee4fc2',
+ },
+ {
+ components: [],
+ version: '0.3.0',
+ prs: ['29280'],
+ description: `Fix the Icon component when the name is not found to return null instead of an empty SVG.`,
+
+ commitSha: '05a5003',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.3.2.ts b/docs-ui/src/utils/changelogs/v0.3.2.ts
index 26dd225299..93ae7f7e63 100644
--- a/docs-ui/src/utils/changelogs/v0.3.2.ts
+++ b/docs-ui/src/utils/changelogs/v0.3.2.ts
@@ -4,9 +4,9 @@ export const changelog_0_3_2: ChangelogProps[] = [
{
components: [],
version: '0.3.2',
- description: `Fix Canon missing dependencies`,
prs: ['29642'],
- type: 'fix',
+ description: `Fix Canon missing dependencies`,
+
commitSha: 'e996368',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.4.0.ts b/docs-ui/src/utils/changelogs/v0.4.0.ts
index 91cd641f4d..a85f59c0dc 100644
--- a/docs-ui/src/utils/changelogs/v0.4.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.4.0.ts
@@ -2,86 +2,115 @@ import type { ChangelogProps } from '../types';
export const changelog_0_4_0: ChangelogProps[] = [
{
- components: ['tabs'],
+ components: [],
version: '0.4.0',
- description: 'New `Tabs` component',
- prs: ['29996'],
- type: 'new',
- },
- {
- components: ['text', 'heading'],
- version: '0.4.0',
- description: 'Add `truncate` prop to `Text` and `Heading`',
- prs: ['29988'],
- type: 'new',
- },
- {
- components: ['menu'],
- version: '0.4.0',
- description: 'Add combobox option to `Menu`',
- prs: ['29986'],
- type: 'new',
- },
- {
- components: ['textfield'],
- version: '0.4.0',
- description: 'Add icon prop on `TextField`',
- prs: ['29820'],
- type: 'new',
- },
- {
- components: ['button', 'button-icon'],
- version: '0.4.0',
- description: 'Improve icon props on `Button` and `IconButton`',
prs: ['29667'],
- },
- {
- components: ['text', 'heading'],
- version: '0.4.0',
- description:
- 'Improve the way we treat custom render on `Text` and `Heading`',
- prs: ['29989'],
- },
- {
- components: ['menu'],
- version: '0.4.0',
- description: 'Improve `Menu` styles',
- prs: ['29986'],
- },
- {
- components: ['textfield'],
- version: '0.4.0',
- description: 'Improve `TextField` styles',
- prs: ['29974'],
- },
- {
- components: ['textfield'],
- version: '0.4.0',
- description: 'Improve clear button on `TextField`',
- prs: ['29878'],
- },
- {
- components: ['flex'],
- version: '0.4.0',
- description: 'Fix spacing props on all layout components',
- prs: ['30013'],
+ description: `**BREAKING**: Icons on Button and IconButton now need to be imported and placed like this: \` } />\``,
+ breaking: true,
+ commitSha: 'ea36f74',
},
{
components: [],
version: '0.4.0',
- description: 'Fix - Pin Base UI version',
- prs: ['29782'],
+ prs: ['29989'],
+ description: `**BREAKING**: We are modifying the way we treat custom render using 'useRender()' under the hood from BaseUI.`,
+ breaking: true,
+ commitSha: 'ccb1fc6',
},
{
- components: ['select'],
+ components: [],
+ version: '0.4.0',
+ prs: ['29974'],
+ description: `**BREAKING**: The icon prop in TextField now accept a ReactNode instead of an icon name. We also updated the icon sizes for each input sizes.`,
+ breaking: true,
+ commitSha: '04a65c6',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29878'],
+ description: `Use correct colour token for TextField clear button icon, prevent layout shift whenever it is hidden or shown and properly size focus area around it. Also stop leading icon shrinking when used together with clear button.`,
+
+ commitSha: 'c8f32db',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29642'],
+ description: `Fix Canon missing dependencies`,
+
+ commitSha: 'e996368',
+ },
+ {
+ components: [],
version: '0.4.0',
- description: 'Fix - Clicking `Select` label moves focus to trigger',
prs: ['29755'],
+ description: `For improved a11y, clicking a Select component label now focuses the Select trigger element, and the TextField component's label is now styled to indicate it's interactive.`,
+
+ commitSha: '720033c',
},
{
- components: ['datatable'],
+ components: [],
+ version: '0.4.0',
+ prs: ['29820'],
+ description: `Added new icon and onClear props to the TextField to make it easier to accessorize inputs.`,
+
+ commitSha: '6189bfd',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29996'],
+ description: `Add new Tabs component to Canon`,
+
+ commitSha: '9510105',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29782'],
+ description: `Pin version of @base-ui-components/react.`,
+
+ commitSha: '97b25a1',
+ },
+ {
+ components: [],
version: '0.4.0',
- description: 'Fix `DataTable.Pagination` count issue',
prs: ['29688'],
+ description: `Fixed an issue with Canon's DataTable.Pagination component showing the wrong number for the "to" count.`,
+
+ commitSha: '206ffbe',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29665'],
+ description: `Removed various typos`,
+
+ commitSha: '72d019d',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29986'],
+ description: `Update Menu component in Canon to make the UI more condensed. We are also adding a new Combobox option for nested navigation.`,
+
+ commitSha: '4551fb7',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29826'],
+ description: `Use the Field component from Base UI within the TextField.`,
+
+ commitSha: '185d3a8',
+ },
+ {
+ components: [],
+ version: '0.4.0',
+ prs: ['29988'],
+ description: `Add new truncate prop to Text and Heading components in Canon.`,
+
+ commitSha: '1ea1db0',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.5.0.ts b/docs-ui/src/utils/changelogs/v0.5.0.ts
index a48cb96dcc..a2edde95f4 100644
--- a/docs-ui/src/utils/changelogs/v0.5.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.5.0.ts
@@ -2,85 +2,99 @@ import type { ChangelogProps } from '../types';
export const changelog_0_5_0: ChangelogProps[] = [
{
- components: ['textfield'],
+ components: [],
version: '0.5.0',
- description: '`TextField` now has multiple label sizes.',
- prs: ['30249'],
- type: 'breaking',
+ prs: ['30085'],
+ description: `**BREAKING**: We are updating the default size of the Button component in Canon to be small instead of medium.`,
+ breaking: true,
+ commitSha: '621fac9',
},
{
- components: ['textfield'],
+ components: [],
version: '0.5.0',
- description:
- '`TextField` can now hide label and description while keeping them available for screen readers.',
- prs: ['30249'],
- type: 'breaking',
+ prs: ['30097'],
+ description: `**BREAKING**: We set the default size for IconButton in Canon to be small instead of medium.`,
+ breaking: true,
+ commitSha: 'a842554',
},
{
- components: ['textfield'],
+ components: [],
version: '0.5.0',
- description:
- 'We are removing the `render` prop in favour of the `as` prop on `Heading` and `Text`.',
- prs: ['30291'],
- type: 'breaking',
- },
- {
- components: ['textfield'],
- version: '0.5.0',
- description: 'Move `TextField` component to use react Aria under the hood.',
prs: ['30286'],
- type: 'breaking',
+ description: `**BREAKING**: Move TextField component to use react Aria under the hood. Introducing a new FieldLabel component to help build custom fields.`,
+ breaking: true,
+ commitSha: '35fd51d',
},
{
- components: ['button', 'button-link'],
+ components: [],
version: '0.5.0',
- description:
- 'Added a render prop to the `Button` component to use it as a link.',
- prs: ['30165'],
- type: 'new',
+ prs: ['30291'],
+ description: `**BREAKING**: We are adding a new as prop on the Heading and Text component to make it easier to change the component tag. We are removing the render prop in favour of the as prop.`,
+ breaking: true,
+ commitSha: '78204a2',
},
{
- components: ['heading'],
+ components: [],
version: '0.5.0',
- description: 'Fix styling for the title4 prop on the Heading component.',
- prs: ['30167'],
- type: 'fix',
+ prs: ['30249'],
+ description: `**BREAKING**: TextField in Canon now has multiple label sizes as well as the capacity to hide label and description but still make them available for screen readers.`,
+ breaking: true,
+ commitSha: 'c49e335',
},
{
- components: ['flex'],
+ components: [],
+ version: '0.5.0',
+ prs: ['30013'],
+ description: `**BREAKING**: Fixes spacing props on layout components and aligned on naming for the Grid component. You should now call the Grid root component using \` \` instead of just \` \`.`,
+ breaking: true,
+ commitSha: '24b45ef',
+ },
+ {
+ components: [],
version: '0.5.0',
- description:
- 'Add `min-width: 0;` by default on Flex components to support truncated text.',
prs: ['30168'],
- type: 'fix',
+ description: `Add min-width: 0; by default on every Flex components in Canon to help support truncated texts inside flex elements.`,
+
+ commitSha: '44df879',
},
{
- components: ['button', 'button-link', 'button-icon'],
+ components: [],
version: '0.5.0',
- description:
- '`Button`, `ButtonLink`, `ButtonIcon` now default to size `small` instead of `medium`',
- prs: ['30085', '30097'],
- type: 'breaking',
+ prs: ['30167'],
+ description: `Fix styling for the title4 prop on the Heading component in Canon.`,
+
+ commitSha: 'ee6ffe6',
},
{
- components: ['grid'],
+ components: [],
version: '0.5.0',
- description: 'Rename Grid component to ` `',
- prs: ['30013'],
- type: 'breaking',
+ prs: ['30165'],
+ description: `Added a render prop to the Button component in Canon to use it as a link.`,
+
+ commitSha: 'f2f814a',
},
{
- components: ['flex', 'container', 'grid', 'box'],
+ components: [],
version: '0.5.0',
- description: 'Fixes spacing props on layout components',
- prs: ['30013'],
- type: 'fix',
- },
- {
- components: ['switch'],
- version: '0.5.0',
- description: 'New `Switch` component',
prs: ['30251'],
- type: 'new',
+ description: `Add new Switch component in Canon.`,
+
+ commitSha: '98f02a6',
+ },
+ {
+ components: [],
+ version: '0.5.0',
+ prs: ['30104'],
+ description: `The filter input in menu comboboxes should now always use the full width of the menu it's in.`,
+
+ commitSha: 'c94f8e0',
+ },
+ {
+ components: [],
+ version: '0.5.0',
+ prs: ['30040'],
+ description: `Remove leftover console.log from Container component.`,
+
+ commitSha: '269316d',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.6.0.ts b/docs-ui/src/utils/changelogs/v0.6.0.ts
index d892f2a78d..55bfb71d9c 100644
--- a/docs-ui/src/utils/changelogs/v0.6.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.6.0.ts
@@ -1,105 +1,12 @@
import type { ChangelogProps } from '../types';
export const changelog_0_6_0: ChangelogProps[] = [
- {
- components: ['tooltip'],
- version: '0.6.0',
- description: 'New `Tooltip` component.',
- prs: ['30461'],
- type: 'new',
- },
- {
- components: ['card'],
- version: '0.6.0',
- description: 'New `Card` component.',
- prs: ['30467'],
- type: 'new',
- },
- {
- components: ['header'],
- version: '0.6.0',
- description: 'New `Header` component.',
- prs: ['30410', '30459', '30493'],
- type: 'new',
- },
- {
- components: ['button', 'button-link', 'button-icon'],
- version: '0.6.0',
- description: 'Improve `Button`, `ButtonIcon` and `ButtonLink` styling.',
- prs: ['30448'],
- type: 'fix',
- },
- {
- components: ['text', 'heading'],
- version: '0.6.0',
- description:
- 'Update return types for `Heading` & `Text` components for React 19.',
- prs: ['30440'],
- type: 'fix',
- },
- {
- components: ['button', 'button-link', 'button-icon'],
- version: '0.6.0',
- description:
- 'New `tertiary` variant to `Button`, `ButtonIcon` and `ButtonLink`.',
- prs: ['30453'],
- type: 'new',
- },
- {
- components: ['skeleton'],
- version: '0.6.0',
- description: 'New `Skeleton` component.',
- prs: ['30466'],
- type: 'new',
- },
- {
- components: ['button-icon'],
- version: '0.6.0',
- description: 'Rename `IconButton` to `ButtonIcon`.',
- prs: ['30297'],
- type: 'breaking',
- },
- {
- components: ['button-link'],
- version: '0.6.0',
- description:
- 'New `ButtonLink`, which replaces the previous render prop pattern on `Button` and `IconButton`.',
- prs: ['30297'],
- type: 'new',
- },
- {
- components: ['button', 'button-link', 'button-icon'],
- version: '0.6.0',
- description: 'Remove the `render` prop from all button-related components.',
- prs: ['30297'],
- type: 'breaking',
- },
{
components: [],
version: '0.6.0',
- description: 'We are consolidating all css files into a single styles.css.',
- prs: ['30325'],
- type: 'fix',
- },
- {
- components: ['searchfield'],
- version: '0.6.0',
- description: 'New `SearchField` component.',
- prs: ['30357'],
- type: 'new',
- },
- {
- components: ['radio-group'],
- version: '0.6.0',
- description: 'New `RadioGroup` + `Radio` component.',
- prs: ['30327'],
- type: 'new',
- },
- {
- components: ['textfield'],
- version: '0.6.0',
- description: 'Added placeholder prop back to `TextField` component.',
- prs: ['30286'],
- type: 'fix',
+ prs: ['30525'],
+ description: `**BREAKING**: Canon has been renamed to Backstage UI. This means that \`@backstage/canon\` has been deprecated and replaced by \`@backstage/ui\`.`,
+ breaking: true,
+ commitSha: 'e92bb9b',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.7.0.ts b/docs-ui/src/utils/changelogs/v0.7.0.ts
index be49afc931..ebef164d96 100644
--- a/docs-ui/src/utils/changelogs/v0.7.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.7.0.ts
@@ -2,211 +2,123 @@ import type { ChangelogProps } from '../types';
export const changelog_0_7_0: ChangelogProps[] = [
{
- components: ['datatable', 'table'],
+ components: [],
version: '0.7.0',
- description: `We are moving our DataTable component to React Aria. We removed our DataTable to only use Table as a single and opinionated option for tables. This new structure is made possible by using React Aria under the hood.`,
prs: ['30654'],
- type: 'breaking',
+ description: `**BREAKING**: We are moving our DataTable component to React Aria. We removed our DataTable to only use Table as a single and opinionated option for tables. This new structure is made possible by using React Aria under the hood.`,
+ breaking: true,
commitSha: '0615e54',
},
{
- components: ['header-page'],
+ components: [],
version: '0.7.0',
- description: `Backstage UI - HeaderPage - We are updating the breadcrumb to be more visible and accessible.`,
prs: ['30874'],
- type: 'breaking',
+ description: `**BREAKING**: Backstage UI - HeaderPage - We are updating the breadcrumb to be more visible and accessible.`,
+ breaking: true,
commitSha: 'b245c9d',
},
{
- components: ['menu'],
+ components: [],
version: '0.7.0',
- description: `**Breaking change** We are updating the Menu component to use React Aria under the hood. The structure and all props are changing to follow React Aria's guidance.`,
prs: ['30908'],
- type: 'breaking',
+ description: `**BREAKING**: We are updating the Menu component to use React Aria under the hood. The structure and all props are changing to follow React Aria's guidance.`,
+ breaking: true,
commitSha: '800f593',
},
{
- components: ['text', 'heading', 'link'],
+ components: [],
version: '0.7.0',
- description: `**Breaking** We are upgrading our \`Text\` component to support all font sizes making the \`Heading\` component redundant. The new \`Text\` component introduces 4 sizes for title and 4 sizes for body text. All of these work in multiple colors and font weights. We improved the \`as\` prop to include all possible values. The \`Link\` component has also been updated to match the new \`Text\` component.`,
prs: ['30592'],
- type: 'breaking',
+ description: `**BREAKING**: We are upgrading our \`Text\` component to support all font sizes making the \`Heading\` component redundant. The new \`Text\` component introduces 4 sizes for title and 4 sizes for body text. All of these work in multiple colors and font weights. We improved the \`as\` prop to include all possible values. The \`Link\` component has also been updated to match the new \`Text\` component.`,
+ breaking: true,
commitSha: 'b0e47f3',
},
{
- components: ['select'],
+ components: [],
version: '0.7.0',
- description: `Fixes some styles on the Select component in BUI.`,
prs: ['30642'],
- type: 'fix',
+ description: `Fixes some styles on the Select component in BUI.`,
+
commitSha: 'de89a3d',
},
{
- components: ['card'],
+ components: [],
version: '0.7.0',
- description: `Export CardHeader, CardBody and CardFooter from Card component index`,
prs: ['30882'],
- type: 'fix',
+ description: `Export CardHeader, CardBody and CardFooter from Card component index`,
+
commitSha: 'a251b3e',
},
{
- components: ['tag-group'],
+ components: [],
version: '0.7.0',
- description: `Add new TagGroup component to Backstage UI.`,
prs: ['30919'],
- type: 'new',
+ description: `Add new TagGroup component to Backstage UI.`,
+
commitSha: 'f761306',
},
- {
- components: ['header', 'header-page'],
- version: '0.7.0',
- description: `Fixes a couple of small bugs in BUI including setting H1 and H2 correctly on the Header and HeaderPage.`,
- prs: ['30636'],
- type: 'fix',
- commitSha: '75fead9',
- },
- {
- components: ['tooltip'],
- version: '0.7.0',
- description: `Update styling of Tooltip element`,
- prs: ['30591'],
- type: 'fix',
- commitSha: 'e7ff178',
- },
- {
- components: ['header-page', 'header'],
- version: '0.7.0',
- description: `**Breaking change** Move breadcrumb to fit in the \`HeaderPage\` instead of the \`Header\` in Backstage UI.`,
- prs: ['30701'],
- type: 'fix',
- commitSha: '230b410',
- },
{
components: [],
version: '0.7.0',
- description: `We are motion away from \`motion\` to use \`gsap\` instead to make Backstage UI backward compatible with React 17.`,
- prs: ['30626'],
- type: 'fix',
- commitSha: '2f9a084',
- },
- {
- components: ['menu'],
- version: '0.7.0',
- description: `Updated Menu component in Backstage UI to use useId() from React Aria instead of React to support React 17.`,
- prs: ['30675'],
- type: 'fix',
- commitSha: 'd4e603e',
- },
- {
- components: ['select'],
- version: '0.7.0',
- description: `Remove stylesheet import from Select component.`,
- prs: ['30800'],
- type: 'fix',
- commitSha: '8bdc491',
- },
- {
- components: ['searchfield'],
- version: '0.7.0',
- description: `Add \`startCollapsed\` prop on the \`SearchField\` component in BUI.`,
- prs: ['30729'],
- type: 'new',
- commitSha: '404b426',
- },
- {
- components: ['header'],
- version: '0.7.0',
- description: `Adds onTabSelectionChange to ui header component.`,
- prs: ['30588'],
- type: 'fix',
- commitSha: 'e0e886f',
- },
- {
- components: ['datatable', 'table'],
- version: '0.7.0',
- description: `We are moving our DataTable component to React Aria. We removed our DataTable to only use Table as a single and opinionated option for tables. This new structure is made possible by using React Aria under the hood.`,
- prs: ['30654'],
- type: 'breaking',
- commitSha: '0615e54',
- },
- {
- components: ['header-page', 'header'],
- version: '0.7.0',
- description: `**Breaking change** Move breadcrumb to fit in the \`HeaderPage\` instead of the \`Header\` in Backstage UI.`,
- prs: ['30701'],
- type: 'fix',
- commitSha: '230b410',
- },
- {
- components: ['select'],
- version: '0.7.0',
- description: `Remove stylesheet import from Select component.`,
- prs: ['30800'],
- type: 'fix',
- commitSha: '8bdc491',
- },
- {
- components: ['searchfield'],
- version: '0.7.0',
- description: `Add \`startCollapsed\` prop on the \`SearchField\` component in BUI.`,
- prs: ['30729'],
- type: 'new',
- commitSha: '404b426',
- },
- {
- components: ['menu'],
- version: '0.7.0',
- description: `Updated Menu component in Backstage UI to use useId() from React Aria instead of React to support React 17.`,
- prs: ['30675'],
- type: 'fix',
- commitSha: 'd4e603e',
- },
- {
- components: ['select'],
- version: '0.7.0',
- description: `Fixes some styles on the Select component in BUI.`,
- prs: ['30642'],
- type: 'fix',
- commitSha: 'de89a3d',
- },
- {
- components: ['header', 'header-page'],
- version: '0.7.0',
- description: `Fixes a couple of small bugs in BUI including setting H1 and H2 correctly on the Header and HeaderPage.`,
prs: ['30636'],
- type: 'fix',
+ description: `Fixes a couple of small bugs in BUI including setting H1 and H2 correctly on the Header and HeaderPage.`,
+
commitSha: '75fead9',
},
{
components: [],
version: '0.7.0',
- description: `We are motion away from \`motion\` to use \`gsap\` instead to make Backstage UI backward compatible with React 17.`,
- prs: ['30626'],
- type: 'fix',
- commitSha: '2f9a084',
- },
- {
- components: ['text', 'heading', 'link'],
- version: '0.7.0',
- description: `**Breaking** We are upgrading our \`Text\` component to support all font sizes making the \`Heading\` component redundant. The new \`Text\` component introduces 4 sizes for title and 4 sizes for body text. All of these work in multiple colors and font weights. We improved the \`as\` prop to include all possible values. The \`Link\` component has also been updated to match the new \`Text\` component.`,
- prs: ['30592'],
- type: 'breaking',
- commitSha: 'b0e47f3',
- },
- {
- components: ['tooltip'],
- version: '0.7.0',
- description: `Update styling of Tooltip element`,
prs: ['30591'],
- type: 'fix',
+ description: `Update styling of Tooltip element`,
+
commitSha: 'e7ff178',
},
{
- components: ['header'],
+ components: [],
+ version: '0.7.0',
+ prs: ['30701'],
+ description: `**BREAKING**: Move breadcrumb to fit in the \`HeaderPage\` instead of the \`Header\` in Backstage UI.`,
+
+ commitSha: '230b410',
+ },
+ {
+ components: [],
+ version: '0.7.0',
+ prs: ['30626'],
+ description: `We are motion away from \`motion\` to use \`gsap\` instead to make Backstage UI backward compatible with React 17.`,
+
+ commitSha: '2f9a084',
+ },
+ {
+ components: [],
+ version: '0.7.0',
+ prs: ['30675'],
+ description: `Updated Menu component in Backstage UI to use useId() from React Aria instead of React to support React 17.`,
+
+ commitSha: 'd4e603e',
+ },
+ {
+ components: [],
+ version: '0.7.0',
+ prs: ['30800'],
+ description: `Remove stylesheet import from Select component.`,
+
+ commitSha: '8bdc491',
+ },
+ {
+ components: [],
+ version: '0.7.0',
+ prs: ['30729'],
+ description: `Add \`startCollapsed\` prop on the \`SearchField\` component in BUI.`,
+
+ commitSha: '404b426',
+ },
+ {
+ components: [],
version: '0.7.0',
- description: `Adds onTabSelectionChange to ui header component.`,
prs: ['30588'],
- type: 'fix',
+ description: `Adds onTabSelectionChange to ui header component.`,
+
commitSha: 'e0e886f',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.7.1.ts b/docs-ui/src/utils/changelogs/v0.7.1.ts
index 0f9f4cec5c..8c66656d23 100644
--- a/docs-ui/src/utils/changelogs/v0.7.1.ts
+++ b/docs-ui/src/utils/changelogs/v0.7.1.ts
@@ -2,43 +2,27 @@ import type { ChangelogProps } from '../types';
export const changelog_0_7_1: ChangelogProps[] = [
{
- components: ['flex'],
+ components: [],
version: '0.7.1',
- description: `Add missing class for flex: baseline`,
prs: ['31013'],
- type: 'new',
+ description: `Add missing class for flex: baseline`,
+
commitSha: '7307930',
},
{
- components: ['select'],
+ components: [],
version: '0.7.1',
- description: `Fix Select component to properly attach aria-label and aria-labelledby props to the rendered element for improved accessibility.`,
prs: ['31037'],
- type: 'fix',
+ description: `Fix Select component to properly attach aria-label and aria-labelledby props to the rendered element for improved accessibility.`,
+
commitSha: '89da341',
},
{
components: [],
version: '0.7.1',
- description: `Removed the need to mock \`window.matchMedia\` in tests, falling back to default breakpoint values instead.`,
prs: ['31148'],
- type: 'fix',
+ description: `Removed the need to mock \`window.matchMedia\` in tests, falling back to default breakpoint values instead.`,
+
commitSha: '0ffa4c7',
},
- {
- components: ['flex'],
- version: '0.7.1',
- description: `Add missing class for flex: baseline`,
- prs: ['31013'],
- type: 'new',
- commitSha: '7307930',
- },
- {
- components: ['select'],
- version: '0.7.1',
- description: `Fix Select component to properly attach aria-label and aria-labelledby props to the rendered element for improved accessibility.`,
- prs: ['31037'],
- type: 'fix',
- commitSha: '89da341',
- },
];
diff --git a/docs-ui/src/utils/changelogs/v0.7.2.ts b/docs-ui/src/utils/changelogs/v0.7.2.ts
index 4a47d3d0e9..82dc6d537a 100644
--- a/docs-ui/src/utils/changelogs/v0.7.2.ts
+++ b/docs-ui/src/utils/changelogs/v0.7.2.ts
@@ -2,67 +2,67 @@ import type { ChangelogProps } from '../types';
export const changelog_0_7_2: ChangelogProps[] = [
{
- components: ['tabs', 'header'],
+ components: [],
version: '0.7.2',
- description: `Making href mandatory in tabs that are part of a Header component`,
prs: ['31343'],
- type: 'fix',
+ description: `Making href mandatory in tabs that are part of a Header component`,
+
commitSha: '3c921c5',
},
{
- components: ['button-link'],
+ components: [],
version: '0.7.2',
- description: `Add react router for internal routing for ButtonLinks`,
prs: ['31276'],
- type: 'new',
+ description: `Add react router for internal routing for ButtonLinks`,
+
commitSha: '5c21e45',
},
{
- components: ['tabs'],
+ components: [],
version: '0.7.2',
- description: `Remove auto selection of tabs for tabs that all have href defined`,
prs: ['31281'],
- type: 'fix',
+ description: `Remove auto selection of tabs for tabs that all have href defined`,
+
commitSha: '9781815',
},
{
- components: ['menu'],
+ components: [],
version: '0.7.2',
- description: `Using react router for internal links in the Menu component`,
prs: ['31339'],
- type: 'fix',
+ description: `Using react router for internal links in the Menu component`,
+
commitSha: 'f6dff5b',
},
{
- components: ['button', 'tooltip'],
+ components: [],
version: '0.7.2',
- description: `Enable tooltips on disabled buttons with automatic wrapper`,
prs: ['31230'],
- type: 'fix',
+ description: `Enable tooltips on disabled buttons with automatic wrapper`,
+
commitSha: 'a9b88be',
},
{
components: [],
version: '0.7.2',
- description: `Avoid overriding onChange when spreading props`,
prs: ['31232'],
- type: 'fix',
+ description: `Avoid overriding onChange when spreading props`,
+
commitSha: '4adbb03',
},
{
- components: ['tabs'],
+ components: [],
version: '0.7.2',
- description: `remove default selection of tab`,
prs: ['31216'],
- type: 'fix',
+ description: `remove default selection of tab`,
+
commitSha: '827340f',
},
{
- components: ['searchfield', 'header'],
+ components: [],
version: '0.7.2',
- description: `Improved SearchField component flex layout and animations. Fixed SearchField behavior in Header components by switching from width-based transitions to flex-basis transitions for better responsive behavior. Added new Storybook stories to test SearchField integration with Header component.`,
prs: ['31158'],
- type: 'fix',
+ description: `Improved SearchField component flex layout and animations. Fixed SearchField behavior in Header components by switching from width-based transitions to flex-basis transitions for better responsive behavior. Added new Storybook stories to test SearchField integration with Header component.`,
+
commitSha: '9a47125',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.8.0.ts b/docs-ui/src/utils/changelogs/v0.8.0.ts
index 8a76937150..90a4738d9a 100644
--- a/docs-ui/src/utils/changelogs/v0.8.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.8.0.ts
@@ -2,171 +2,171 @@ import type { ChangelogProps } from '../types';
export const changelog_0_8_0: ChangelogProps[] = [
{
- components: ['password-field', 'textfield'],
+ components: [],
version: '0.8.0',
- description: `**BREAKING**: Added a new \`PasswordField\` component. As part of this change, the \`password\` and \`search\` types have been removed from \`TextField\`.`,
prs: ['31238'],
- type: 'breaking',
+ description: `**BREAKING**: Added a new \`PasswordField\` component. As part of this change, the \`password\` and \`search\` types have been removed from \`TextField\`.`,
+ breaking: true,
commitSha: '9acc1d6',
},
{
components: [],
version: '0.8.0',
- description: `**BREAKING** Restructure Backstage UI component styling to use CSS Modules instead of pure CSS. We don't expect this to be an issue in practice but it is important to call out that all styles are now loaded through CSS modules with generated class names. We are still providing fixed class names for all components to allow anyone to style their Backstage instance.`,
prs: ['31399'],
- type: 'breaking',
+ description: `**BREAKING** Restructure Backstage UI component styling to use CSS Modules instead of pure CSS. We don't expect this to be an issue in practice but it is important to call out that all styles are now loaded through CSS modules with generated class names. We are still providing fixed class names for all components to allow anyone to style their Backstage instance.`,
+ breaking: true,
commitSha: 'b0d11b5',
},
{
- components: ['scrollarea'],
+ components: [],
version: '0.8.0',
- description: `**BREAKING** The ScrollArea component has been removed from Backstage UI because it did not meet our accessibility standards.`,
prs: ['31409'],
- type: 'breaking',
+ description: `**BREAKING** The ScrollArea component has been removed from Backstage UI because it did not meet our accessibility standards.`,
+ breaking: true,
commitSha: '0c53517',
},
{
- components: ['icon'],
+ components: [],
version: '0.8.0',
- description: `**BREAKING** Remove Icon component in Backstage UI. This component was creating issue for tree-shaking. It is recommended to use icons from @remixicon/react until we found a better alternative in Backstage UI.`,
prs: ['31407'],
- type: 'breaking',
+ description: `**BREAKING** Remove Icon component in Backstage UI. This component was creating issue for tree-shaking. It is recommended to use icons from @remixicon/react until we found a better alternative in Backstage UI.`,
+ breaking: true,
commitSha: '7b319c5',
},
{
- components: ['dialog'],
+ components: [],
version: '0.8.0',
- description: `Adding a new Dialog component to Backstage UI.`,
prs: ['31371'],
- type: 'fix',
+ description: `Adding a new Dialog component to Backstage UI.`,
+
commitSha: '2591b42',
},
{
- components: ['tabs'],
+ components: [],
version: '0.8.0',
- description: `remove default selection of tab`,
prs: ['31216'],
- type: 'fix',
+ description: `remove default selection of tab`,
+
commitSha: '827340f',
},
{
components: [],
version: '0.8.0',
- description: `Fix margin utility classes in Backstage UI.`,
prs: ['31389'],
- type: 'fix',
+ description: `Fix margin utility classes in Backstage UI.`,
+
commitSha: '5dc17cc',
},
{
- components: ['menu'],
+ components: [],
version: '0.8.0',
- description: `Fix scroll jumping when opening menu in Backstage UI.`,
prs: ['31394'],
- type: 'fix',
+ description: `Fix scroll jumping when opening menu in Backstage UI.`,
+
commitSha: '85faee0',
},
{
- components: ['tabs', 'header'],
+ components: [],
version: '0.8.0',
- description: `Making href mandatory in tabs that are part of a Header component`,
prs: ['31343'],
- type: 'fix',
+ description: `Making href mandatory in tabs that are part of a Header component`,
+
commitSha: '3c921c5',
},
{
components: [],
version: '0.8.0',
- description: `Update react-aria-components to version 1.13.0`,
prs: ['31367'],
- type: 'fix',
+ description: `Update react-aria-components to version 1.13.0`,
+
commitSha: 'df7d2cf',
},
{
- components: ['table'],
+ components: [],
version: '0.8.0',
- description: `Fix table sorting icon position in Backstage UI.`,
prs: ['31393'],
- type: 'fix',
+ description: `Fix table sorting icon position in Backstage UI.`,
+
commitSha: '507ee55',
},
{
- components: ['menu'],
+ components: [],
version: '0.8.0',
- description: `Add new \`virtualized\`, \`maxWidth\` and \`maxHeight\` props to \`Menu\`, \`MenuListBox\`, \`MenuAutocomplete\` and \`MenuAutocompleteListBox\` to allow for virtalization of long lists inside menus.`,
prs: ['31375'],
- type: 'new',
+ description: `Add new \`virtualized\`, \`maxWidth\` and \`maxHeight\` props to \`Menu\`, \`MenuListBox\`, \`MenuAutocomplete\` and \`MenuAutocompleteListBox\` to allow for virtalization of long lists inside menus.`,
+
commitSha: '8b7c3c9',
},
{
- components: ['box', 'container', 'flex', 'grid'],
+ components: [],
version: '0.8.0',
- description: `Added support for data attributes in \` \`, \` \`, \` \`, and \` \` components, ensuring they are correctly applied to the rendered elements.`,
prs: ['31374'],
- type: 'new',
+ description: `Added support for data attributes in \` \`, \` \`, \` \`, and \` \` components, ensuring they are correctly applied to the rendered elements.`,
+
commitSha: 'b940062',
},
{
- components: ['scrollarea', 'card'],
+ components: [],
version: '0.8.0',
- description: `Cleaning up Backstage UI props definitions as well as removing ScrollArea in Card to improve accessibility.`,
prs: ['31404'],
- type: 'fix',
+ description: `Cleaning up Backstage UI props definitions as well as removing ScrollArea in Card to improve accessibility.`,
+
commitSha: '206c801',
},
{
- components: ['button-link'],
+ components: [],
version: '0.8.0',
- description: `Add react router for internal routing for ButtonLinks`,
prs: ['31276'],
- type: 'new',
+ description: `Add react router for internal routing for ButtonLinks`,
+
commitSha: '5c21e45',
},
{
components: [],
version: '0.8.0',
- description: `Added a background color default on the body`,
prs: ['31365'],
- type: 'new',
+ description: `Added a background color default on the body`,
+
commitSha: '865bce8',
},
{
components: [],
version: '0.8.0',
- description: `We are restructuring our CSS to have a better layer structure.`,
prs: ['31362'],
- type: 'fix',
+ description: `We are restructuring our CSS to have a better layer structure.`,
+
commitSha: 'af4d9b4',
},
{
- components: ['searchfield', 'header'],
+ components: [],
version: '0.8.0',
- description: `Improved SearchField component flex layout and animations. Fixed SearchField behavior in Header components by switching from width-based transitions to flex-basis transitions for better responsive behavior. Added new Storybook stories to test SearchField integration with Header component.`,
prs: ['31158'],
- type: 'fix',
+ description: `Improved SearchField component flex layout and animations. Fixed SearchField behavior in Header components by switching from width-based transitions to flex-basis transitions for better responsive behavior. Added new Storybook stories to test SearchField integration with Header component.`,
+
commitSha: '9a47125',
},
{
- components: ['tabs'],
+ components: [],
version: '0.8.0',
- description: `Remove auto selection of tabs for tabs that all have href defined`,
prs: ['31281'],
- type: 'fix',
+ description: `Remove auto selection of tabs for tabs that all have href defined`,
+
commitSha: '9781815',
},
{
components: [],
version: '0.8.0',
- description: `Avoid overriding onChange when spreading props`,
prs: ['31232'],
- type: 'fix',
+ description: `Avoid overriding onChange when spreading props`,
+
commitSha: '4adbb03',
},
{
- components: ['menu'],
+ components: [],
version: '0.8.0',
- description: `Using react router for internal links in the Menu component`,
prs: ['31339'],
- type: 'fix',
+ description: `Using react router for internal links in the Menu component`,
+
commitSha: 'f6dff5b',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.8.2.ts b/docs-ui/src/utils/changelogs/v0.8.2.ts
index 1f78c7385b..8e4b1c2de2 100644
--- a/docs-ui/src/utils/changelogs/v0.8.2.ts
+++ b/docs-ui/src/utils/changelogs/v0.8.2.ts
@@ -2,43 +2,43 @@ import type { ChangelogProps } from '../types';
export const changelog_0_8_2: ChangelogProps[] = [
{
- components: ['text'],
+ components: [],
version: '0.8.2',
- description: `Fix default text color in Backstage UI`,
prs: ['31429'],
- type: 'fix',
+ description: `Fix default text color in Backstage UI`,
+
commitSha: '26c6a78',
},
{
- components: ['text'],
+ components: [],
version: '0.8.2',
- description: `Fix the default font size in Backstage UI.`,
prs: ['31435'],
- type: 'fix',
+ description: `Fix the default font size in Backstage UI.`,
+
commitSha: 'dac851f',
},
{
components: [],
version: '0.8.2',
- description: `Fix CSS layer ordering in Backstage UI to make sure component styles are loaded after tokens and base declarations.`,
prs: ['31448'],
- type: 'fix',
+ description: `Fix CSS layer ordering in Backstage UI to make sure component styles are loaded after tokens and base declarations.`,
+
commitSha: '3c0ea67',
},
{
components: [],
version: '0.8.2',
- description: `Fix font smoothing as default in Backstage UI.`,
prs: ['31444'],
- type: 'fix',
+ description: `Fix font smoothing as default in Backstage UI.`,
+
commitSha: '4eb455c',
},
{
- components: ['text'],
+ components: [],
version: '0.8.2',
- description: `Fix default font wight and font family in Backstage UI.`,
prs: ['31432'],
- type: 'fix',
+ description: `Fix default font wight and font family in Backstage UI.`,
+
commitSha: '00bfb83',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.9.0.ts b/docs-ui/src/utils/changelogs/v0.9.0.ts
index f5546b7ba9..de5c40c5de 100644
--- a/docs-ui/src/utils/changelogs/v0.9.0.ts
+++ b/docs-ui/src/utils/changelogs/v0.9.0.ts
@@ -13,26 +13,23 @@ export const changelog_0_9_0: ChangelogProps[] = [
- \`small\` size unchanged (1.5rem / 24px)
- \`medium\` size unchanged (2rem / 32px, default)
- \`large\` size **changed from 3rem to 2.5rem** (40px)
- - New \`x-large\` size added (3rem / 48px)
+ - New \`x-large\` size added (3rem / 48px)`,
+ migration: `\`\`\`diff
+# Remove Base UI-specific props
+-
++
- Migration:
+# Update large size usage to x-large for same visual size
+-
++
+\`\`\`
- \`\`\`diff
- # Remove Base UI-specific props
- -
- +
-
- # Update large size usage to x-large for same visual size
- -
- +
- \`\`\`
-
- Added \`purpose\` prop for accessibility control (\`'informative'\` or \`'decoration'\`).`,
- type: 'breaking',
+Added \`purpose\` prop for accessibility control (\`'informative'\` or \`'decoration'\`).`,
+ breaking: true,
commitSha: '539cf26',
},
{
- components: ['checkbox'],
+ components: [],
version: '0.9.0',
prs: ['31517'],
description: `**BREAKING**: Migrated Checkbox component from Base UI to React Aria Components.
@@ -46,58 +43,55 @@ export const changelog_0_9_0: ChangelogProps[] = [
- \`label\` prop removed - use \`children\` instead
- CSS: \`bui-CheckboxLabel\` class removed
- Data attribute: \`data-checked\` → \`data-selected\`
- - Use without label is no longer supported
+ - Use without label is no longer supported`,
+ migration: `Before:
- Migration examples:
+\`\`\`tsx
+
+\`\`\`
- Before:
+After:
- \`\`\`tsx
-
- \`\`\`
+\`\`\`tsx
+
+ Accept terms
+
+\`\`\`
- After:
+Before:
- \`\`\`tsx
-
- Accept terms
-
- \`\`\`
+\`\`\`tsx
+
+\`\`\`
- Before:
+After:
- \`\`\`tsx
-
- \`\`\`
+\`\`\`tsx
+Option
+\`\`\`
- After:
+Before:
- \`\`\`tsx
- Option
- \`\`\`
+\`\`\`tsx
+
+\`\`\`
- Before:
+After:
- \`\`\`tsx
-
- \`\`\`
-
- After:
-
- \`\`\`tsx
-
- Accessible label
-
- \`\`\``,
- type: 'breaking',
+\`\`\`tsx
+
+ Accessible label
+
+\`\`\``,
+ breaking: true,
commitSha: '5c614ff',
},
{
- components: ['searchfield', 'textfield'],
+ components: [],
version: '0.9.0',
prs: ['31507'],
- description: `Fixing styles on SearchField in Backstage UI after migration to CSS modules. \`SearchField\` has now its own set of class names. We previously used class names from \`TextField\` but this approach was creating some confusion so going forward in your theme you'll be able to theme \`TextField\` and \`SearchField\` separately.`,
- type: 'breaking',
+ description: `**BREAKING**: Fixing styles on SearchField in Backstage UI after migration to CSS modules. \`SearchField\` has now its own set of class names. We previously used class names from \`TextField\` but this approach was creating some confusion so going forward in your theme you'll be able to theme \`TextField\` and \`SearchField\` separately.`,
+ breaking: true,
commitSha: '134151f',
},
{
@@ -106,77 +100,70 @@ export const changelog_0_9_0: ChangelogProps[] = [
prs: ['31744'],
description: `**BREAKING**: Removed central \`componentDefinitions\` object and related type utilities (\`ComponentDefinitionName\`, \`ComponentClassNames\`).
- Component definitions are primarily intended for documenting the CSS class API for theming purposes, not for programmatic use in JavaScript/TypeScript.
+ Component definitions are primarily intended for documenting the CSS class API for theming purposes, not for programmatic use in JavaScript/TypeScript.`,
+ migration: `If you were using component definitions or class names to build custom components, we recommend migrating to either:
- **Migration Guide:**
-
- If you were using component definitions or class names to build custom components, we recommend migrating to either:
-
- - Use Backstage UI components directly as building blocks, or
- - Duplicate the component CSS in your own stylesheets instead of relying on internal class names`,
- type: 'breaking',
+- Use Backstage UI components directly as building blocks, or
+- Duplicate the component CSS in your own stylesheets instead of relying on internal class names`,
+ breaking: true,
commitSha: 'a67670d',
},
{
- components: ['menu', 'switch', 'skeleton', 'header', 'tabs'],
+ components: [
+ 'menu',
+ 'switch',
+ 'skeleton',
+ 'plugin-header',
+ 'header-page',
+ 'tabs',
+ ],
version: '0.9.0',
prs: ['31496'],
description: `**BREAKING**: Changed className prop behavior to augment default styles instead of being ignored or overriding them.
- Affected components:
-
- - Menu, MenuListBox, MenuAutocomplete, MenuAutocompleteListbox, MenuItem, MenuListBoxItem, MenuSection, MenuSeparator
- - Switch
- - Skeleton
- - FieldLabel
- - Header, HeaderToolbar
- - HeaderPage
- - Tabs, TabList, Tab, TabPanel
-
If you were passing custom className values to any of these components that relied on the previous behavior, you may need to adjust your styles to account for the default classes now being applied alongside your custom classes.`,
- type: 'breaking',
+ breaking: true,
commitSha: 'b78fc45',
},
{
- components: ['accordion'],
+ components: [],
version: '0.9.0',
prs: ['31493'],
- description: `**BREAKING**: Removed \`Collapsible\` component. Migrate to \`Accordion\` or use React Aria \`Disclosure\`.
+ description: `**BREAKING**: Removed \`Collapsible\` component. Migrate to \`Accordion\` or use React Aria \`Disclosure\`.`,
+ migration: `**Path 1: Accordion (Opinionated Styled Component)**
- ## Migration Path 1: Accordion (Opinionated Styled Component)
+Accordion provides preset styling with a similar component structure.
- Accordion provides preset styling with a similar component structure.
+\`\`\`diff
+- import { Collapsible } from '@backstage/ui';
++ import { Accordion, AccordionTrigger, AccordionPanel } from '@backstage/ui';
- \`\`\`diff
- - import { Collapsible } from '@backstage/ui';
- + import { Accordion, AccordionTrigger, AccordionPanel } from '@backstage/ui';
+-
+- Toggle } />
+- Content
+-
- -
- - Toggle } />
- - Content
- -
++
++
++ Content
++
+\`\`\`
- +
- +
- + Content
- +
- \`\`\`
+CSS classes: \`.bui-CollapsibleRoot\` → \`.bui-Accordion\`, \`.bui-CollapsibleTrigger\` → \`.bui-AccordionTrigger\` (now on heading element), \`.bui-CollapsiblePanel\` → \`.bui-AccordionPanel\`
- CSS classes: \`.bui-CollapsibleRoot\` → \`.bui-Accordion\`, \`.bui-CollapsibleTrigger\` → \`.bui-AccordionTrigger\` (now on heading element), \`.bui-CollapsiblePanel\` → \`.bui-AccordionPanel\`
+**Path 2: React Aria Disclosure (Full Customization)**
- ## Migration Path 2: React Aria Disclosure (Full Customization)
+For custom styling without preset styles:
- For custom styling without preset styles:
+\`\`\`tsx
+import { Disclosure, Button, DisclosurePanel } from 'react-aria-components';
- \`\`\`tsx
- import { Disclosure, Button, DisclosurePanel } from 'react-aria-components';
-
-
- Toggle
- Content
- ;
- \`\`\``,
- type: 'breaking',
+
+ Toggle
+ Content
+ ;
+\`\`\``,
+ breaking: true,
commitSha: '83c100e',
},
{
@@ -185,18 +172,17 @@ export const changelog_0_9_0: ChangelogProps[] = [
prs: ['31649'],
description: `**BREAKING**: The \`SelectProps\` interface now accepts a generic type parameter for selection mode.
- Added searchable and multiple selection support to Select component. The component now accepts \`searchable\`, \`selectionMode\`, and \`searchPlaceholder\` props to enable filtering and multi-selection modes.
-
- Migration: If you're using \`SelectProps\` type directly, update from \`SelectProps\` to \`SelectProps<'single' | 'multiple'>\`. Component usage remains backward compatible.`,
- type: 'breaking',
+ Added searchable and multiple selection support to Select component. The component now accepts \`searchable\`, \`selectionMode\`, and \`searchPlaceholder\` props to enable filtering and multi-selection modes.`,
+ migration: `If you're using \`SelectProps\` type directly, update from \`SelectProps\` to \`SelectProps<'single' | 'multiple'>\`. Component usage remains backward compatible.`,
+ breaking: true,
commitSha: '816af0f',
},
{
- components: ['header'],
+ components: ['plugin-header'],
version: '0.9.0',
prs: ['31525'],
- description: `Fix broken external links in Backstage UI Header component.`,
- type: 'fix',
+ description: `Fix broken external links in Backstage UI PluginHeader component.`,
+
commitSha: 'd01de00',
},
{
@@ -204,23 +190,23 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31618'],
description: `Fixed CSS issues in Select component including popover width constraints, focus outline behavior, and overflow handling.`,
- type: 'fix',
+
commitSha: '35a3614',
},
{
- components: ['password-field', 'searchfield', 'menu'],
+ components: ['password-field', 'searchfield'],
version: '0.9.0',
prs: ['31679'],
description: `Improved visual consistency of PasswordField, SearchField, and MenuAutocomplete components.`,
- type: 'fix',
+
commitSha: '01476f0',
},
{
- components: [],
+ components: ['text'],
version: '0.9.0',
prs: ['31429'],
description: `Fix default text color in Backstage UI`,
- type: 'fix',
+
commitSha: '26c6a78',
},
{
@@ -228,7 +214,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31615'],
description: `Fixed Text component to prevent \`truncate\` prop from being spread to the underlying DOM element.`,
- type: 'fix',
+
commitSha: 'deaa427',
},
{
@@ -236,7 +222,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31524'],
description: `Improved the Link component structure in Backstage UI.`,
- type: 'fix',
+
commitSha: '1059f95',
},
{
@@ -244,15 +230,15 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31673'],
description: `Fixed dialog backdrop appearance in dark mode.`,
- type: 'fix',
+
commitSha: '836b0c7',
},
{
- components: ['table', 'avatar'],
+ components: ['avatar'],
version: '0.9.0',
prs: ['31608'],
description: `Migrated CellProfile component from Base UI Avatar to Backstage UI Avatar component.`,
- type: 'fix',
+
commitSha: '6874094',
},
{
@@ -260,7 +246,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31623'],
description: `Avatar components in x-small and small sizes now display only one initial instead of two, improving readability at smaller dimensions.`,
- type: 'fix',
+
commitSha: '719d772',
},
{
@@ -268,7 +254,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31672'],
description: `Removed \`@base-ui-components/react\` dependency as all components now use React Aria Components.`,
- type: 'fix',
+
commitSha: '6d35a6b',
},
{
@@ -276,7 +262,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31435'],
description: `Fix the default font size in Backstage UI.`,
- type: 'fix',
+
commitSha: 'dac851f',
},
{
@@ -284,15 +270,15 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31448'],
description: `Fix CSS layer ordering in Backstage UI to make sure component styles are loaded after tokens and base declarations.`,
- type: 'fix',
+
commitSha: '3c0ea67',
},
{
- components: ['radiogroup'],
+ components: ['radio-group'],
version: '0.9.0',
prs: ['31576'],
description: `Fixed RadioGroup radio button ellipse distortion by preventing flex shrink and grow.`,
- type: 'fix',
+
commitSha: '3b18d80',
},
{
@@ -300,7 +286,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31444'],
description: `Fix font smoothing as default in Backstage UI.`,
- type: 'fix',
+
commitSha: '4eb455c',
},
{
@@ -308,7 +294,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31516'],
description: `Enable tree-shaking of imports other than \`*.css\`.`,
- type: 'fix',
+
commitSha: 'ff9f0c3',
},
{
@@ -316,7 +302,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31681'],
description: `Added \`loading\` prop to Button and ButtonIcon components for displaying spinner during async operations.`,
- type: 'new',
+
commitSha: '7839e7b',
},
{
@@ -324,7 +310,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31680'],
description: `Fixed Table Row component to properly support opening links in new tabs via right-click or Cmd+Click when using the \`href\` prop.`,
- type: 'fix',
+
commitSha: 'a00fb88',
},
{
@@ -332,7 +318,7 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31469'],
description: `Set the color-scheme property depending on theme`,
- type: 'fix',
+
commitSha: 'e16ece5',
},
{
@@ -340,15 +326,15 @@ export const changelog_0_9_0: ChangelogProps[] = [
version: '0.9.0',
prs: ['31484'],
description: `Added new VisuallyHidden component for hiding content visually while keeping it accessible to screen readers.`,
- type: 'new',
+
commitSha: '1ef3ca4',
},
{
components: [],
version: '0.9.0',
prs: ['31432'],
- description: `Fix default font wight and font family in Backstage UI.`,
- type: 'fix',
+ description: `Fix default font weight and font family in Backstage UI.`,
+
commitSha: '00bfb83',
},
];
diff --git a/docs-ui/src/utils/changelogs/v0.9.1.ts b/docs-ui/src/utils/changelogs/v0.9.1.ts
new file mode 100644
index 0000000000..c71c10a2e0
--- /dev/null
+++ b/docs-ui/src/utils/changelogs/v0.9.1.ts
@@ -0,0 +1,28 @@
+import type { ChangelogProps } from '../types';
+
+export const changelog_0_9_1: ChangelogProps[] = [
+ {
+ components: [],
+ version: '0.9.1',
+ prs: ['31843'],
+ description: `Fixed Table Row component to correctly handle cases where no \`href\` is provided, preventing unnecessary router provider wrapping and fixing the cursor incorrectly showing as a pointer despite the element not being a link.`,
+
+ commitSha: 'b3ad928',
+ },
+ {
+ components: [],
+ version: '0.9.1',
+ prs: ['31817'],
+ description: `Fixed \`useTable\` hook to prioritize \`providedRowCount\` over data length for accurate row count in server-side pagination scenarios.`,
+
+ commitSha: 'fe7c751',
+ },
+ {
+ components: [],
+ version: '0.9.1',
+ prs: ['31844'],
+ description: `Fixed Table column sorting indicator to show up arrow when no sort is active, correctly indicating that clicking will sort ascending.`,
+
+ commitSha: 'c145031',
+ },
+];
diff --git a/docs-ui/src/utils/data.ts b/docs-ui/src/utils/data.ts
index 1b046fd3e5..a1ef483785 100644
--- a/docs-ui/src/utils/data.ts
+++ b/docs-ui/src/utils/data.ts
@@ -4,34 +4,23 @@ interface Page {
status?: 'alpha' | 'beta' | 'stable' | 'deprecated' | 'inProgress' | 'new';
}
-export const layoutComponents: Page[] = [
- {
- title: 'Box',
- slug: 'box',
- },
- {
- title: 'Container',
- slug: 'container',
- },
- {
- title: 'Grid',
- slug: 'grid',
- },
- {
- title: 'Flex',
- slug: 'flex',
- },
-];
-
export const components: Page[] = [
{
title: 'Accordion',
slug: 'accordion',
},
+ {
+ title: 'Alert',
+ slug: 'alert',
+ },
{
title: 'Avatar',
slug: 'avatar',
},
+ {
+ title: 'Box',
+ slug: 'box',
+ },
{
title: 'Button',
slug: 'button',
@@ -52,13 +41,25 @@ export const components: Page[] = [
title: 'Checkbox',
slug: 'checkbox',
},
+ {
+ title: 'Container',
+ slug: 'container',
+ },
{
title: 'Dialog',
slug: 'dialog',
},
{
- title: 'Header',
- slug: 'header',
+ title: 'Flex',
+ slug: 'flex',
+ },
+ {
+ title: 'Grid',
+ slug: 'grid',
+ },
+ {
+ title: 'PluginHeader',
+ slug: 'plugin-header',
},
{
title: 'HeaderPage',
@@ -79,7 +80,6 @@ export const components: Page[] = [
{
title: 'Popover',
slug: 'popover',
- status: 'new',
},
{
title: 'RadioGroup',
diff --git a/docs-ui/src/utils/definitions.ts b/docs-ui/src/utils/definitions.ts
index d279d73775..452a519980 100644
--- a/docs-ui/src/utils/definitions.ts
+++ b/docs-ui/src/utils/definitions.ts
@@ -1 +1,12 @@
+'use client';
+
+/**
+ * Client-side re-export of UI component definitions.
+ *
+ * The 'use client' directive here creates a boundary that prevents Next.js
+ * from analyzing the transitive dependencies (hooks) during SSR/SSG.
+ *
+ * This allows the UI package to remain pure and free of Next.js-specific
+ * directives while still working correctly in the Next.js App Router.
+ */
export * from '../../../packages/ui/src/definitions';
diff --git a/docs-ui/src/utils/getPageName.ts b/docs-ui/src/utils/getPageName.ts
index 7a1ccbf2a1..252c80c6c1 100644
--- a/docs-ui/src/utils/getPageName.ts
+++ b/docs-ui/src/utils/getPageName.ts
@@ -1,17 +1,10 @@
-import { components, layoutComponents } from './data';
+import { components } from './data';
export function getPageName(slug: string): string | null {
- // Search in components array
const component = components.find(c => c.slug === slug);
if (component) {
return component.title;
}
- // Search in layoutComponents array
- const layoutComponent = layoutComponents.find(c => c.slug === slug);
- if (layoutComponent) {
- return layoutComponent.title;
- }
-
return null;
}
diff --git a/docs-ui/src/utils/playground-context.tsx b/docs-ui/src/utils/playground-context.tsx
index a1cee6ecba..252194535b 100644
--- a/docs-ui/src/utils/playground-context.tsx
+++ b/docs-ui/src/utils/playground-context.tsx
@@ -4,6 +4,7 @@ import {
ReactNode,
useState,
useEffect,
+ useSyncExternalStore,
} from 'react';
import { components } from './data';
@@ -31,6 +32,14 @@ const PlaygroundContext = createContext<{
setSelectedThemeName: () => {},
});
+// Stable server snapshots (outside component to avoid recreating)
+const defaultThemeSet = new Set(['light']);
+const defaultThemeName: ThemeName = 'backstage';
+
+// Cache for theme Sets to avoid creating new objects on every getSnapshot call
+let cachedThemeValue: string | null = null;
+let cachedThemeSet: Set = defaultThemeSet;
+
// Create a provider component
export const PlaygroundProvider = ({ children }: { children: ReactNode }) => {
// Check if running in a browser environment
@@ -40,57 +49,72 @@ export const PlaygroundProvider = ({ children }: { children: ReactNode }) => {
const [selectedComponents, setSelectedComponents] = useState(
components.map(component => component.slug),
);
- const [selectedTheme, setSelectedTheme] = useState>(
- new Set(['light']),
- );
- const [selectedThemeName, setSelectedThemeName] =
- useState('backstage');
- // Load saved theme from localStorage after hydration
- useEffect(() => {
- if (isBrowser) {
- const savedThemeString = localStorage.getItem('theme-mode');
- if (savedThemeString) {
- // Parse the comma-separated string back into a Set
- const themeArray = savedThemeString
- .split(',')
- .filter(Boolean) as Theme[];
- setSelectedTheme(new Set(themeArray));
+ // Use useSyncExternalStore for SSR-safe localStorage access
+ const selectedTheme = useSyncExternalStore(
+ callback => {
+ window.addEventListener('storage', callback);
+ return () => window.removeEventListener('storage', callback);
+ },
+ () => {
+ const saved = localStorage.getItem('theme-mode');
+
+ // Return cached Set if value hasn't changed
+ if (saved === cachedThemeValue) {
+ return cachedThemeSet;
+ }
+
+ // Update cache with new value
+ cachedThemeValue = saved;
+ if (saved) {
+ const themeArray = saved.split(',').filter(Boolean) as Theme[];
+ cachedThemeSet = new Set(themeArray);
} else {
- setSelectedTheme(new Set(['light']));
+ cachedThemeSet = defaultThemeSet;
}
- }
- }, [isBrowser]);
- // Load saved theme name from localStorage after hydration
+ return cachedThemeSet;
+ },
+ () => defaultThemeSet, // Stable server snapshot
+ );
+
+ const selectedThemeName = useSyncExternalStore(
+ callback => {
+ window.addEventListener('storage', callback);
+ return () => window.removeEventListener('storage', callback);
+ },
+ () => {
+ const saved = localStorage.getItem('theme-name') as ThemeName;
+ return saved || defaultThemeName;
+ },
+ () => defaultThemeName, // Stable server snapshot
+ );
+
+ // Keep setter functions that update both state and localStorage
+ const setSelectedTheme = (keys: Set) => {
+ const value = Array.from(keys).join(',');
+ localStorage.setItem('theme-mode', value);
+ // Invalidate cache
+ cachedThemeValue = null;
+ window.dispatchEvent(new Event('storage'));
+ };
+
+ const setSelectedThemeName = (name: ThemeName) => {
+ localStorage.setItem('theme-name', name);
+ window.dispatchEvent(new Event('storage'));
+ };
+
+ // Sync to DOM attributes when values change
useEffect(() => {
- if (isBrowser) {
- const savedThemeName = localStorage.getItem('theme-name') as ThemeName;
- if (savedThemeName) {
- setSelectedThemeName(savedThemeName);
- }
- }
- }, [isBrowser]);
+ document.documentElement.setAttribute(
+ 'data-theme-mode',
+ Array.from(selectedTheme).join(','),
+ );
+ }, [selectedTheme]);
useEffect(() => {
- if (isBrowser) {
- document.documentElement.setAttribute(
- 'data-theme-mode',
- Array.from(selectedTheme).join(','),
- );
- localStorage.setItem('theme-mode', Array.from(selectedTheme).join(','));
- }
- }, [selectedTheme, isBrowser]);
-
- useEffect(() => {
- if (isBrowser) {
- document.documentElement.setAttribute(
- 'data-theme-name',
- selectedThemeName || 'backstage',
- );
- localStorage.setItem('theme-name', selectedThemeName || 'backstage');
- }
- }, [selectedThemeName, isBrowser]);
+ document.documentElement.setAttribute('data-theme-name', selectedThemeName);
+ }, [selectedThemeName]);
return (
;
};
+export type SpacingProp = {
+ name: string;
+ description: ReactNode;
+ default?: string;
+};
+
+export type SpacingGroupDef = {
+ props: SpacingProp[];
+ values: string[];
+ responsive: boolean;
+};
+
export type PropDef = {
type:
| 'string'
@@ -22,19 +35,22 @@ export type PropDef = {
| 'number'
| 'boolean'
| 'spacing'
+ | 'spacing-group'
| 'complex';
values?: string | string[];
complexType?: ComplexTypeDef;
+ spacingGroup?: SpacingGroupDef;
default?: string;
required?: boolean;
responsive?: boolean;
- description?: string;
+ description?: ReactNode;
};
export { breakpoints };
export type { Breakpoint };
export const spacingValues = [
+ '0',
'0.5',
'1',
'1.5',
@@ -49,47 +65,53 @@ export const spacingValues = [
'10',
'11',
'12',
- '13',
- '14',
+ 'auto',
];
export const paddingPropDefs = (
spacingValues: string[],
): Record => ({
p: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Padding on all sides.',
},
px: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Horizontal padding (left and right).',
},
py: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Vertical padding (top and bottom).',
},
pt: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Padding on the top.',
},
pr: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Padding on the right.',
},
pb: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Padding on the bottom.',
},
pl: {
- type: 'enum | string',
+ type: 'spacing',
values: spacingValues,
responsive: true,
+ description: 'Padding on the left.',
},
});
@@ -97,39 +119,46 @@ export const marginPropDefs = (
spacingValues: string[],
): Record