From 2825dd7e04573bca554c41e00318cc96f7ae6ef1 Mon Sep 17 00:00:00 2001 From: Torben Barsballe Date: Thu, 25 May 2017 15:56:00 -0700 Subject: [PATCH] Improve autocomplete styling Use "position: absolute" so that autocomplete follows the field when you scroll. --- src/styles/_input.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/_input.scss b/src/styles/_input.scss index 11bf1971..093297a6 100644 --- a/src/styles/_input.scss +++ b/src/styles/_input.scss @@ -122,7 +122,8 @@ &-menu { border: none; padding: 2px 0; - position: fixed; + margin-right: 10px; + position: absolute; overflow: auto; max-height: 50%; background: $color-gray;