From 7edd498335cf9703e5d61fbc0c9263afa661665a Mon Sep 17 00:00:00 2001 From: Brandon Tripp Date: Mon, 9 Nov 2020 14:41:30 -0700 Subject: [PATCH] finished inital styling of input component; added temporary input mixins from external styleguide to help migration --- webapp/components/LoginForm/LoginForm.vue | 4 + .../_new/generic/BaseInput/BaseInput.vue | 67 ++++--- webapp/mixins/tempMixins-styleguide/input.js | 181 ++++++++++++++++++ 3 files changed, 224 insertions(+), 28 deletions(-) create mode 100644 webapp/mixins/tempMixins-styleguide/input.js diff --git a/webapp/components/LoginForm/LoginForm.vue b/webapp/components/LoginForm/LoginForm.vue index d6732ae1e..2ff5fcce5 100644 --- a/webapp/components/LoginForm/LoginForm.vue +++ b/webapp/components/LoginForm/LoginForm.vue @@ -100,5 +100,9 @@ export default { margin-top: $space-large; margin-bottom: $space-small; } + + .input-wrapper { + margin-bottom: $space-small; + } } diff --git a/webapp/components/_new/generic/BaseInput/BaseInput.vue b/webapp/components/_new/generic/BaseInput/BaseInput.vue index 93ede5dff..b39724cc7 100644 --- a/webapp/components/_new/generic/BaseInput/BaseInput.vue +++ b/webapp/components/_new/generic/BaseInput/BaseInput.vue @@ -1,5 +1,5 @@