From 75c72b987eb52b907ffd8af33f15ecc58213fc12 Mon Sep 17 00:00:00 2001 From: Danshil Kokil Mungur Date: Fri, 19 Mar 2021 04:04:51 +0400 Subject: [PATCH] fix(ui): increase page size dropdown width when necessary (#1216) --- src/styles/globals.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index c3fd6eb6d..1a20f2c00 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -234,11 +234,14 @@ select.rounded-r-only { @apply rounded-l-none; } -input.short, -select.short { +input.short { width: 4.875rem; } +select.short { + @apply w-min; +} + .protocol { @apply inline-flex items-center px-3 text-gray-100 bg-gray-600 border border-r-0 border-gray-500 cursor-default rounded-l-md sm:text-sm; }