From c3be9c1f9388f10dd8e0815c667d0fcb91689212 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Mon, 14 Aug 2023 16:09:21 -0400 Subject: [PATCH] add the css properties from the scoped components to global scss --- src/styles/common-styles.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index c092d62b..2bbaa3ea 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -72,5 +72,14 @@ body { font-size: 14px; line-height: 24px; font-weight: 500; - } + } + + // Set default border for form-control and form select + .form-control, .form-select { + border: 1px solid $gray-500 + } + + .form-select { + background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8.89' xml:space='preserve'%3e%3cpath d='M8 8.89c-.24 0-.46-.09-.63-.26L.26 1.53a.901.901 0 0 1 0-1.27C.43.1.66 0 .9 0s.47.1.64.26L8 6.74 14.47.27c.17-.17.4-.27.64-.27s.47.1.63.27c.17.17.26.4.26.64s-.1.47-.27.63l-7.1 7.09a.86.86 0 0 1-.63.26z' fill='%231474a2'/%3e%3c/svg%3e"); + } }