From 46119f84a9cdfe1c071e5e78065889989f6a2ad1 Mon Sep 17 00:00:00 2001 From: Blaine Ehrhart Date: Fri, 17 Jun 2016 10:31:57 -0700 Subject: [PATCH] Fixing a scrollbar bug when the list is loading The negative text indent will cause the scrollbars to go berserk as the loading text gets rotated around the view port. Overflow hidden insures the text outside the spinner is not displayed. --- src/components/Select.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Select.vue b/src/components/Select.vue index 5851c5b..aebfa26 100644 --- a/src/components/Select.vue +++ b/src/components/Select.vue @@ -130,6 +130,7 @@ right: 10px; font-size: 5px; text-indent: -9999em; + overflow: hidden; border-top: .9em solid rgba(100, 100, 100, .1); border-right: .9em solid rgba(100, 100, 100, .1); border-bottom: .9em solid rgba(100, 100, 100, .1);