Skip to content

Commit 99a7c5d

Browse files
committed
Merge branch 'main' into design-review-fixes-v1
2 parents 1c09ae5 + cd59477 commit 99a7c5d

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

apps/portal/astro.config.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,15 @@ export default defineConfig({
1818
src: "./src/assets/harness-design-system-logo.svg",
1919
replacesTitle: true,
2020
},
21+
favicon: "./src/assets/favicon.png",
2122
social: {
2223
github: "https://github.com/harness/canary",
2324
},
2425
sidebar: [
26+
{
27+
label: "Getting started",
28+
autogenerate: { directory: "getting-started" },
29+
},
2530
{
2631
label: "Foundations",
2732
autogenerate: { directory: "foundations" },
@@ -50,6 +55,6 @@ export default defineConfig({
5055
react(),
5156
],
5257
redirects: {
53-
"/": "/components/breadcrumb", //
58+
"/": "/components/accordion",
5459
},
5560
});

apps/portal/src/assets/favicon.png

1.65 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: Installation
3+
description: Steps to get up and running with the Harness Canary UI components
4+
---
5+
6+
These steps will you get up and running with the Harness Canary UI components.

apps/portal/src/styles.css

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
@apply text-foreground-3 text-base overscroll-none;
2+
@apply text-foreground-3 text-base overscroll-none !important;
33
}
44

55
main {
@@ -113,3 +113,13 @@ ul.top-level summary svg {
113113
pre.prism-code {
114114
@apply rounded-md overflow-hidden border border-borders-4 bg-background-2 !important;
115115
}
116+
117+
/* Pagination overrides */
118+
119+
.pagination-links a {
120+
@apply border border-borders-4 rounded-md text-xs text-foreground-4;
121+
}
122+
123+
.pagination-links a .link-title {
124+
@apply text-lg leading-tight;
125+
}

packages/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@harnessio/ui",
33
"description": "Harness Canary UI component library",
4-
"version": "0.0.1",
4+
"version": "0.0.1-alpha.0",
55
"private": false,
66
"type": "module",
77
"main": "./dist/index.js",

0 commit comments

Comments
 (0)