From e1ebc86ca1da80a8792c43efe164a5c5956a10f0 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 28 Oct 2020 23:34:22 +0100 Subject: [PATCH] add info-message styles --- styles/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/styles/index.css b/styles/index.css index 7033890..a23bc2b 100644 --- a/styles/index.css +++ b/styles/index.css @@ -119,6 +119,15 @@ @apply text-blue-700; } +.info-message { + @apply flex items-center bg-yellow-200 border-solid border border-yellow-700 rounded text-yellow-700 py-2 px-3; +} + +.info-message:before { + @apply mr-2; + content: '\1F6C8'; +} + .error-message { @apply flex items-center bg-red-200 border-solid border border-red-700 rounded text-red-700 py-2 px-3; }