From 18330ed88a783d054e2e2aa995f2853be6cc41a9 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 18 Apr 2023 18:59:58 +0200 Subject: [PATCH] Created the TextInput style --- src/common/components/TextInput/styles.sass | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/common/components/TextInput/styles.sass diff --git a/src/common/components/TextInput/styles.sass b/src/common/components/TextInput/styles.sass new file mode 100644 index 0000000..26e0052 --- /dev/null +++ b/src/common/components/TextInput/styles.sass @@ -0,0 +1,15 @@ +@import "@styles/colors" + +.login-group input + padding: 0.5rem 1rem + border-radius: 0.5rem + background-color: $background-opacity + color: $white + border: 2px solid $dark-gray + font-size: 18pt + width: auto + font-weight: 700 + +.login-group input:focus + outline: none + border: 2px solid $primary \ No newline at end of file