From bf6b96a97da1d6d0771bbe5320ddaed1fa45e545 Mon Sep 17 00:00:00 2001 From: Martin Kleinschrodt Date: Mon, 25 Jul 2022 07:24:38 +0200 Subject: [PATCH] Update support page with proper content and styling --- assets/support.md | 83 ++++++++++++++++++------------ packages/app/src/styles/content.ts | 12 +++-- 2 files changed, 56 insertions(+), 39 deletions(-) diff --git a/assets/support.md b/assets/support.md index 2479edf1..826dbbdb 100644 --- a/assets/support.md +++ b/assets/support.md @@ -1,39 +1,54 @@ - - - + + +
  • + + +
    Blog
    + +
    +
  • +
  • + + +
    Terms of Service
    + +
    +
  • +
  • + + +
    Privacy Policy
    + +
    +
  • + - - - - - - - - - - - + + + diff --git a/packages/app/src/styles/content.ts b/packages/app/src/styles/content.ts index 4d02627e..47ae7994 100644 --- a/packages/app/src/styles/content.ts +++ b/packages/app/src/styles/content.ts @@ -65,7 +65,8 @@ export const content = css` list-style: square; } - ul.plain { + ul.plain, + ul.unstyled { list-style: none; padding: 0; } @@ -96,10 +97,8 @@ export const content = css` color: var(--button-primary-color, var(--button-color)); } - ${click("button")}; - ${hover("button")}; - - a.plain { + a.plain, + a.unstyled { text-decoration: none !important; } @@ -128,4 +127,7 @@ export const content = css` margin-bottom: 0.5em; overflow-x: auto; } + + ${click("button")}; + ${hover("button")}; `;