From daeec23e6a1dd45d589a24da84ce01bc374806e5 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 9 Mar 2019 22:48:31 +0000 Subject: [PATCH] Update base styles --- assets/css/app.css | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/assets/css/app.css b/assets/css/app.css index a838dca8..139bbcde 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -1,10 +1,26 @@ -@tailwind preflight; +@tailwind base; + +h1, h2, h3 { + @apply font-bold +} + +h1 { + @apply text-4xl +} + +h2 { + @apply text-2xl +} + +img { + @apply max-w-full h-auto +} a { @apply text-blue no-underline; &:hover { - @apply underline; + @apply underline } }