From c5f5e762a80e1685223bac70cd1eddd8a7486c2c Mon Sep 17 00:00:00 2001 From: Stephan Meijer Date: Tue, 16 Jun 2020 15:12:26 +0200 Subject: [PATCH] feat: improve styles in preview pane --- src/styles/app.pcss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/styles/app.pcss b/src/styles/app.pcss index a723aadd..dc71f395 100644 --- a/src/styles/app.pcss +++ b/src/styles/app.pcss @@ -157,11 +157,15 @@ button:disabled { @apply block text-gray-700 text-sm font-bold mb-2; } -.preview input { - @apply block appearance-none border rounded w-full py-2 px-3 mb-2 text-gray-700 leading-tight; +.preview input, +.preview textarea, +.preview select { + @apply block appearance-none border rounded w-full py-2 px-3 mb-2 bg-white text-gray-700 leading-tight; } .preview input:focus, +.preview textarea:focus, +.preview select:focus, .preview button:focus { @apply outline-none border border-gray-700; }