Skip to content

Commit 63be74e

Browse files
committed
v.5.3.3
1 parent 894fd8f commit 63be74e

File tree

85 files changed

+900
-708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+900
-708
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
<!-- Note: update version numbers need updating every time in `metadata.json`, `package.json`, `package-lock.json` (×2), `README.md`, `CHANGELOG.md`, and `codebase.scss` -->
44

5+
## 19 Nov 2024 -- v.5.3.3
6+
7+
* Reinvention of the way Codebase handles rounded corners. Breaking changes:
8+
* Different border radius size classes now only provide _values_ — e.g. they need to be paired with `rounded`, `rounded-tl` etc. class as a modifier;
9+
* Now there is only one `unrounded` reset. Four corner-specific rounding corner classes have been added.
10+
* Removed `rounded-circle` and `rounded-full` (you only need `rounded-pill` to accomplish all thay they were used for).
11+
512
## 11 Nov 2024 -- v.5.3.2
613

714
* Focus ring now copying the [Accessability Style Guide](https://a11y-style-guide.com/style-guide/section-general.html#kssref-general-link-focus).
@@ -25,7 +32,7 @@
2532
* Improved `.t-decoration-none` and `.t-link-inside` (panel links).
2633
* All tables now need the `.table` class.
2734
* Paddings utility `.p-block` renamed `.p-cell` (alias `.p-block` is still available.)
28-
* Removed ` -webkit-overflow-scrolling: touch;` from the body tag.
35+
* Removed `-webkit-overflow-scrolling: touch;` from the body tag.
2936

3037
## 30 Oct 2024 -- v.5.2.4
3138

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Install via Git: https://github.com/codebase-frontend-library/codebase-5.git
1919

2020
***
2121

22-
* Current version: 5.3.2 -- see [changelog](https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md)
22+
* Current version: 5.3.3 -- see [changelog](https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md)
2323
* CSS file size: 94 KB
2424
* Licence: MIT
2525
* Developer: Simon Padbury

docs/dist/codebase.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dist/codebase.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/docs/1-getting-started/accessibility/index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Accessibility - Codebase</title>
99

1010
<link href="/codebase-5/prism/prism.css" rel="stylesheet">
11-
<link href="/codebase-5/dist/codebase.css?v=5.3.2" rel="stylesheet">
11+
<link href="/codebase-5/dist/codebase.css?v=5.3.3" rel="stylesheet">
1212

1313
<link rel="icon" type="image/svg+xml" href="/codebase-5/favicon.svg">
1414
<link rel="apple-touch-icon" sizes="180x180" href="/codebase-5/apple-touch-icon.png">
@@ -255,8 +255,9 @@
255255

256256
<div class="grow">
257257
<div class="menu pr-1 flex flex-end sm:hidden-below">
258-
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.2">Download CSS</a></div>
258+
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.3">Download CSS</a></div>
259259
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
260+
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md">Changelog</a></div>
260261
</div>
261262
</div>
262263

@@ -310,7 +311,7 @@
310311
<div id="side-menu-wrap" class="p-2 md:pt-4 pb-6">
311312

312313
<div class="mb-3 sm:hidden">
313-
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.2">Download</a></div>
314+
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.3">Download</a></div>
314315
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
315316
</div>
316317

@@ -686,7 +687,7 @@ <h3 id="apps-and-browser-extensions" tabindex="-1">Apps and browser extensions</
686687
</p>
687688

688689
<div class="container-lg py-3 grid xs:equal-2-cols sm:equal-3-cols md:equal-4-cols lg:equal-6-cols gap-2 t-center">
689-
<div>Version: 5.3.2</div>
690+
<div>Version: 5.3.3</div>
690691
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/docs/1-getting-started/introduction/">Documentation</a></div>
691692
<div><a class="t-gray-200 hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">GitHub Repository</a></div>
692693
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/dist/codebase.css">CSS (minified)</a> (94 KB)</div>

docs/docs/1-getting-started/css-variables/index.html

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>CSS Variables - Codebase</title>
99

1010
<link href="/codebase-5/prism/prism.css" rel="stylesheet">
11-
<link href="/codebase-5/dist/codebase.css?v=5.3.2" rel="stylesheet">
11+
<link href="/codebase-5/dist/codebase.css?v=5.3.3" rel="stylesheet">
1212

1313
<link rel="icon" type="image/svg+xml" href="/codebase-5/favicon.svg">
1414
<link rel="apple-touch-icon" sizes="180x180" href="/codebase-5/apple-touch-icon.png">
@@ -255,8 +255,9 @@
255255

256256
<div class="grow">
257257
<div class="menu pr-1 flex flex-end sm:hidden-below">
258-
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.2">Download CSS</a></div>
258+
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.3">Download CSS</a></div>
259259
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
260+
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md">Changelog</a></div>
260261
</div>
261262
</div>
262263

@@ -310,7 +311,7 @@
310311
<div id="side-menu-wrap" class="p-2 md:pt-4 pb-6">
311312

312313
<div class="mb-3 sm:hidden">
313-
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.2">Download</a></div>
314+
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.3">Download</a></div>
314315
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
315316
</div>
316317

@@ -542,7 +543,7 @@ <h2 id="the-codebase-root-selector" tabindex="-1">The Codebase root selector</h2
542543
<ol>
543544
<li>Font stacks</li>
544545
<li>UI colors (base and hover state colors for <label class="label label-warning">warning</label>, <label class="label label-danger">danger</label>, <label class="label label-success">success</label>, <label class="label label-info">info</label>, <label class="label label-primary">primary</label>, <label class="label label-secondary">secondary</label>, and <label class="label label-tertiary">tertiary</label>), generated from the Sass map <code>$ui-setup</code></li>
545-
<li>A color variable generator that outputs all the shade variations <code>-100</code> through <code>-900</code> of the Codebase color swatches amber <label class="label bg-amber-500 t-white">  </label>, red <label class="label bg-red-500 t-white">  </label>, green <label class="label bg-green-500 t-white">  </label>, blue <label class="label bg-blue-500 t-white">  </label>, purple <label class="label bg-purple-500 t-white">  </label>, teal <label class="label bg-teal-500 t-white">  </label>, and gray <label class="label bg-gray-500 t-white">  </label> (<strong>note:</strong> the UI colors are the <code>-600</code> shades of these colors, and the hover states for buttons are the <code>-700</code> shades)</li>
546+
<li>A color variable generator that outputs all the shade variations <code>-100</code> through <code>-900</code> of the Codebase color swatches <label class="label bg-amber-500 t-white"> amber </label>, <label class="label bg-red-500 t-white"> red </label>, <label class="label bg-green-500 t-white"> green </label>, <label class="label bg-blue-500 t-white"> blue </label>, <label class="label bg-purple-500 t-white"> purple </label>, <label class="label bg-teal-500 t-white"> teal </label>, and <label class="label bg-gray-500 t-white"> gray </label> (<strong>note:</strong> the UI colors are the <code>-600</code> shades of these colors, and the hover states for buttons are the <code>-700</code> shades)</li>
546547
<li>Base theme colors — for page background, default text color, line details (e.g. <code>&lt;hr&gt;</code>, form input borders, table cell borders), links (various states), default buttons, code blocks, and highlight and selection colors</li>
547548
<li>Widths (generated by Sass map) — used in media query breakpoint widths, containers and width utilities</li>
548549
<li>Spacing (generated by Sass map) — used in utilities for margins, paddings, and flexbox/grid gaps</li>
@@ -601,7 +602,7 @@ <h3 id="example%3A-how-codebase-uses-color-variables" tabindex="-1">Example: How
601602
</p>
602603

603604
<div class="container-lg py-3 grid xs:equal-2-cols sm:equal-3-cols md:equal-4-cols lg:equal-6-cols gap-2 t-center">
604-
<div>Version: 5.3.2</div>
605+
<div>Version: 5.3.3</div>
605606
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/docs/1-getting-started/introduction/">Documentation</a></div>
606607
<div><a class="t-gray-200 hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">GitHub Repository</a></div>
607608
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/dist/codebase.css">CSS (minified)</a> (94 KB)</div>

docs/docs/1-getting-started/element-grid/index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Element grid - Codebase</title>
99

1010
<link href="/codebase-5/prism/prism.css" rel="stylesheet">
11-
<link href="/codebase-5/dist/codebase.css?v=5.3.2" rel="stylesheet">
11+
<link href="/codebase-5/dist/codebase.css?v=5.3.3" rel="stylesheet">
1212

1313
<link rel="icon" type="image/svg+xml" href="/codebase-5/favicon.svg">
1414
<link rel="apple-touch-icon" sizes="180x180" href="/codebase-5/apple-touch-icon.png">
@@ -255,8 +255,9 @@
255255

256256
<div class="grow">
257257
<div class="menu pr-1 flex flex-end sm:hidden-below">
258-
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.2">Download CSS</a></div>
258+
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.3">Download CSS</a></div>
259259
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
260+
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md">Changelog</a></div>
260261
</div>
261262
</div>
262263

@@ -310,7 +311,7 @@
310311
<div id="side-menu-wrap" class="p-2 md:pt-4 pb-6">
311312

312313
<div class="mb-3 sm:hidden">
313-
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.2">Download</a></div>
314+
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.3">Download</a></div>
314315
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
315316
</div>
316317

@@ -621,7 +622,7 @@ <h2 id="utility-class-spacing" tabindex="-1">Utility class spacing</h2>
621622
</p>
622623

623624
<div class="container-lg py-3 grid xs:equal-2-cols sm:equal-3-cols md:equal-4-cols lg:equal-6-cols gap-2 t-center">
624-
<div>Version: 5.3.2</div>
625+
<div>Version: 5.3.3</div>
625626
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/docs/1-getting-started/introduction/">Documentation</a></div>
626627
<div><a class="t-gray-200 hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">GitHub Repository</a></div>
627628
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/dist/codebase.css">CSS (minified)</a> (94 KB)</div>

docs/docs/1-getting-started/improvements-since-codebase-4/index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Improvements - Codebase</title>
99

1010
<link href="/codebase-5/prism/prism.css" rel="stylesheet">
11-
<link href="/codebase-5/dist/codebase.css?v=5.3.2" rel="stylesheet">
11+
<link href="/codebase-5/dist/codebase.css?v=5.3.3" rel="stylesheet">
1212

1313
<link rel="icon" type="image/svg+xml" href="/codebase-5/favicon.svg">
1414
<link rel="apple-touch-icon" sizes="180x180" href="/codebase-5/apple-touch-icon.png">
@@ -255,8 +255,9 @@
255255

256256
<div class="grow">
257257
<div class="menu pr-1 flex flex-end sm:hidden-below">
258-
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.2">Download CSS</a></div>
258+
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.3">Download CSS</a></div>
259259
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
260+
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md">Changelog</a></div>
260261
</div>
261262
</div>
262263

@@ -310,7 +311,7 @@
310311
<div id="side-menu-wrap" class="p-2 md:pt-4 pb-6">
311312

312313
<div class="mb-3 sm:hidden">
313-
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.2">Download</a></div>
314+
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.3">Download</a></div>
314315
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
315316
</div>
316317

@@ -635,7 +636,7 @@ <h2 id="gulp-is-no-longer-required" tabindex="-1">Gulp is no longer required</h2
635636
</p>
636637

637638
<div class="container-lg py-3 grid xs:equal-2-cols sm:equal-3-cols md:equal-4-cols lg:equal-6-cols gap-2 t-center">
638-
<div>Version: 5.3.2</div>
639+
<div>Version: 5.3.3</div>
639640
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/docs/1-getting-started/introduction/">Documentation</a></div>
640641
<div><a class="t-gray-200 hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">GitHub Repository</a></div>
641642
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/dist/codebase.css">CSS (minified)</a> (94 KB)</div>

docs/docs/1-getting-started/introduction/index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Introduction - Codebase</title>
99

1010
<link href="/codebase-5/prism/prism.css" rel="stylesheet">
11-
<link href="/codebase-5/dist/codebase.css?v=5.3.2" rel="stylesheet">
11+
<link href="/codebase-5/dist/codebase.css?v=5.3.3" rel="stylesheet">
1212

1313
<link rel="icon" type="image/svg+xml" href="/codebase-5/favicon.svg">
1414
<link rel="apple-touch-icon" sizes="180x180" href="/codebase-5/apple-touch-icon.png">
@@ -255,8 +255,9 @@
255255

256256
<div class="grow">
257257
<div class="menu pr-1 flex flex-end sm:hidden-below">
258-
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.2">Download CSS</a></div>
258+
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.3">Download CSS</a></div>
259259
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
260+
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md">Changelog</a></div>
260261
</div>
261262
</div>
262263

@@ -310,7 +311,7 @@
310311
<div id="side-menu-wrap" class="p-2 md:pt-4 pb-6">
311312

312313
<div class="mb-3 sm:hidden">
313-
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.2">Download</a></div>
314+
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.3">Download</a></div>
314315
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
315316
</div>
316317

@@ -645,7 +646,7 @@ <h2 id="browser-support" tabindex="-1">Browser support</h2>
645646
</p>
646647

647648
<div class="container-lg py-3 grid xs:equal-2-cols sm:equal-3-cols md:equal-4-cols lg:equal-6-cols gap-2 t-center">
648-
<div>Version: 5.3.2</div>
649+
<div>Version: 5.3.3</div>
649650
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/docs/1-getting-started/introduction/">Documentation</a></div>
650651
<div><a class="t-gray-200 hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">GitHub Repository</a></div>
651652
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/dist/codebase.css">CSS (minified)</a> (94 KB)</div>

docs/docs/1-getting-started/responsive-design/index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Responsive design - Codebase</title>
99

1010
<link href="/codebase-5/prism/prism.css" rel="stylesheet">
11-
<link href="/codebase-5/dist/codebase.css?v=5.3.2" rel="stylesheet">
11+
<link href="/codebase-5/dist/codebase.css?v=5.3.3" rel="stylesheet">
1212

1313
<link rel="icon" type="image/svg+xml" href="/codebase-5/favicon.svg">
1414
<link rel="apple-touch-icon" sizes="180x180" href="/codebase-5/apple-touch-icon.png">
@@ -255,8 +255,9 @@
255255

256256
<div class="grow">
257257
<div class="menu pr-1 flex flex-end sm:hidden-below">
258-
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.2">Download CSS</a></div>
258+
<div><a class="p-cell t-gray-100 t-decoration-none t-semibold hover:t-decoration-underline hover:t-white" href="/codebase-5/dist/codebase.css?v=5.3.3">Download CSS</a></div>
259259
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
260+
<div><a class="p-cell t-gray-100 t-decoration-none hover:t-decoration-underline hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5/blob/main/CHANGELOG.md">Changelog</a></div>
260261
</div>
261262
</div>
262263

@@ -310,7 +311,7 @@
310311
<div id="side-menu-wrap" class="p-2 md:pt-4 pb-6">
311312

312313
<div class="mb-3 sm:hidden">
313-
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.2">Download</a></div>
314+
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="/codebase-5/dist/codebase.css?v=5.3.3">Download</a></div>
314315
<div><a class="block py-1 t-decoration-none hover:t-decoration-underline t-gray-600 hover:t-gray-900" href="https://github.com/codebase-frontend-library/codebase-5">Github</a></div>
315316
</div>
316317

@@ -694,7 +695,7 @@ <h2 id="infographic%3A-responsive-css-classes-in-codebase" tabindex="-1">Infogra
694695
</p>
695696

696697
<div class="container-lg py-3 grid xs:equal-2-cols sm:equal-3-cols md:equal-4-cols lg:equal-6-cols gap-2 t-center">
697-
<div>Version: 5.3.2</div>
698+
<div>Version: 5.3.3</div>
698699
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/docs/1-getting-started/introduction/">Documentation</a></div>
699700
<div><a class="t-gray-200 hover:t-white" href="https://github.com/codebase-frontend-library/codebase-5">GitHub Repository</a></div>
700701
<div><a class="t-gray-200 hover:t-white" href="/codebase-5/dist/codebase.css">CSS (minified)</a> (94 KB)</div>

0 commit comments

Comments
 (0)