From 4ae2c5c2f319e15ecba245f8b679dbfcd0242a84 Mon Sep 17 00:00:00 2001 From: Haishan Date: Sat, 1 Aug 2020 20:04:49 +0800 Subject: feat: a simple about page --- src/components/about/About.module.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/components/about/About.module.css (limited to 'src/components/about/About.module.css') diff --git a/src/components/about/About.module.css b/src/components/about/About.module.css new file mode 100644 index 0000000..632b3ee --- /dev/null +++ b/src/components/about/About.module.css @@ -0,0 +1,18 @@ +.root { + padding: 6px 15px; + @media (--breakpoint-not-small) { + padding: 10px 40px; + } +} + +.mono { + font-family: var(--font-mono); +} + +.link { + color: var(--color-text-secondary); + display: inline-flex; +} +.link:hover { + color: var(--color-text-highlight); +} -- cgit v1.3.1