diff --git a/docs/.vitepress/theme/assets/css/tailwind.css b/docs/.vitepress/theme/assets/css/tailwind.css index bc13de33..b41567cf 100644 --- a/docs/.vitepress/theme/assets/css/tailwind.css +++ b/docs/.vitepress/theme/assets/css/tailwind.css @@ -94,14 +94,13 @@ /* Fonts/Mobile/H4 */ font-size: 24px; - font-weight: 275; + font-weight: 200; line-height: 30px; /* 125% */ letter-spacing: -0.6px; @media screen(md) { /* Fonts/Tablet/H4 */ font-size: 28px; - font-weight: 275; line-height: 34px; /* 121.429% */ letter-spacing: -0.6px; } @@ -109,7 +108,6 @@ @media screen(xl) { /* Fonts/Desktop/H4 */ font-size: 32px; - font-weight: 275; line-height: 48px; /* 150% */ letter-spacing: -0.6px; } @@ -206,6 +204,12 @@ border: 2px solid var(--color-cornflower); } + .kit-button.kit-button-salmon { + @apply text-salmon; + @apply hocus:text-white hocus:bg-salmon; + border: 2px solid var(--color-salmon); + } + .kit-cards { @apply grid grid-cols-1 md:grid-cols-3 gap-2; diff --git a/docs/.vitepress/theme/components/Blog.vue b/docs/.vitepress/theme/components/Blog.vue index d3770f6b..1e6184d0 100644 --- a/docs/.vitepress/theme/components/Blog.vue +++ b/docs/.vitepress/theme/components/Blog.vue @@ -54,7 +54,7 @@ const filteredPostsByTag = computed(() => { }) }) -const getColorForTag = (tag) => { +const getColorForTag = (tag: string) => { return tagsColorsMap[ tagsByIndex[tag] % tagsColorsMap.length ] @@ -85,10 +85,10 @@ watchEffect(() => {
  • diff --git a/docs/.vitepress/theme/components/Footer.vue b/docs/.vitepress/theme/components/Footer.vue index 58f09b9d..fd8d6648 100644 --- a/docs/.vitepress/theme/components/Footer.vue +++ b/docs/.vitepress/theme/components/Footer.vue @@ -19,13 +19,15 @@ const year = (new Date()).getFullYear()
    Made with ♥️ by - - - - - - - + + + + + + + + +
    @@ -41,16 +43,9 @@ const year = (new Date()).getFullYear()
    - +

    This site conforms to Web Content Accessibility Guidelines 2.1

    diff --git a/docs/.vitepress/theme/components/Home.vue b/docs/.vitepress/theme/components/Home.vue index 9018850b..08873968 100644 --- a/docs/.vitepress/theme/components/Home.vue +++ b/docs/.vitepress/theme/components/Home.vue @@ -1,13 +1,16 @@