From 411d1118b6121add8fa20b7aefee6e10124b5034 Mon Sep 17 00:00:00 2001 From: Richard Harris Date: Sun, 7 Apr 2019 08:36:08 -0400 Subject: [PATCH] mobile styles --- site/src/components/WhosUsingSvelte/index.svelte | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/site/src/components/WhosUsingSvelte/index.svelte b/site/src/components/WhosUsingSvelte/index.svelte index 2fc85d1bc8..5d174f837d 100644 --- a/site/src/components/WhosUsingSvelte/index.svelte +++ b/site/src/components/WhosUsingSvelte/index.svelte @@ -16,25 +16,31 @@ } a { - height: 60px; + height: 40px; margin: 0 0.5em 0.5em 0; text-decoration: none; border: 1px solid #aaa; - padding: 10px 20px; - border-radius: 30px; + padding: 5px 10px; + border-radius: 20px; } .add-yourself { display: flex; align-items: center; border: 1px solid #eee; - border-radius: 30px; - padding: 0 1em; } img { height: 100%; } + + @media (min-width: 540px) { + a { + height: 60px; + padding: 10px 20px; + border-radius: 30px; + } + }