From 4227dc01ccfefc94f4c3af0c904a2d7766a94387 Mon Sep 17 00:00:00 2001 From: Anthony Catel Date: Thu, 8 Oct 2020 15:47:52 +0200 Subject: [PATCH] Searchbox style --- src/index.css | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 9f41e76..ebdf4d7 100644 --- a/src/index.css +++ b/src/index.css @@ -2,7 +2,7 @@ @tailwind components; -@tailwind utilities; + .btn { @apply bg-white border border-teal-500 text-teal-500 rounded-lg font-semibold py-1 px-2; @@ -103,3 +103,27 @@ how to remove the virtical space around the range input in IE*/ /*Edge starts the margin from the thumb, not the track as other browsers do*/ } } + +.controls { + margin-top: 10px; + border: 1px solid transparent; + border-radius: 2px 0 0 2px; + box-sizing: border-box; + -moz-box-sizing: border-box; + height: 40px; + outline: none; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); +} + +#pac-input { + background-color: #fff; + font-family: Roboto; + font-size: 15px; + font-weight: 300; + margin-left: 12px; + padding: 0 11px 0 13px; + text-overflow: ellipsis; + width: 300px; +} + +@tailwind utilities; \ No newline at end of file