From 3c50954cf0e003905c8bca654248e3fdf46374a9 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Mon, 30 Jul 2018 11:18:42 -0400 Subject: [PATCH] project edit screen styles --- scss/sections/_project_edit.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scss/sections/_project_edit.scss diff --git a/scss/sections/_project_edit.scss b/scss/sections/_project_edit.scss new file mode 100644 index 00000000..2222fd26 --- /dev/null +++ b/scss/sections/_project_edit.scss @@ -0,0 +1,19 @@ +.project-edit__env-list-item { + display: flex; + flex-direction: row; + align-items: flex-end; + + .usa-input { + margin: 0 ($gap * 4) 0 0; + flex-grow: 1; + } + + .project-edit__env-list-item__remover { + @include icon-link; + @include icon-link-vertical; + @include icon-link-color($color-red, $color-red-lightest); + + margin-bottom: -$gap; + margin-right: -$gap; + } +}