diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-01-30 20:06:53 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2018-01-30 20:06:53 +0100 |
commit | a57d620d4229749a6aa8f831d6f5337c296ca6d8 (patch) | |
tree | 80aada8aeb3729fe83227dce61e329ecc228a00b /src/client/style | |
parent | 214f4ef2f3fe33bd28a3ec8ef76586924a5c26f2 (diff) |
Fix box shadow on search
Diffstat (limited to 'src/client/style')
-rw-r--r-- | src/client/style/_component-search.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/style/_component-search.scss b/src/client/style/_component-search.scss index f8f2fd6..99e7b1e 100644 --- a/src/client/style/_component-search.scss +++ b/src/client/style/_component-search.scss @@ -1,17 +1,17 @@ .search { height: 54px; position: relative; - box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); &-overflow { border-radius: 2px; background-color: white; position: absolute; width: 100%; + box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); } &--has-focus { - box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08); + box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08); } &__results--has-results { |