From d00b6a791611b013ca9bedaa9d82e8f115fefe9d Mon Sep 17 00:00:00 2001 From: Richard Harris Date: Sat, 20 Apr 2019 17:37:18 -0400 Subject: [PATCH] link to blog posts from blurb boxes on homepage --- site/src/routes/_components/Blurb.svelte | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/site/src/routes/_components/Blurb.svelte b/site/src/routes/_components/Blurb.svelte index 61b249be80..dcdab3dd54 100644 --- a/site/src/routes/_components/Blurb.svelte +++ b/site/src/routes/_components/Blurb.svelte @@ -32,7 +32,7 @@ font-size: var(--h5); } - .box a { + .learn-more { position: relative; text-align: right; margin-top: auto; @@ -41,12 +41,12 @@ font-size: 1.6rem; } - .box a:hover { + .box:hover .learn-more { color: white; text-decoration: underline; } - .box a::after, .cta a::after { + .learn-more::after, .cta a::after { content: ''; position: absolute; display: block; @@ -121,26 +121,26 @@
- + learn more + - + learn more + - + learn more +

Svelte is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.