From caa55a5742f1d4baa29c491497dde2d0a94bfadf Mon Sep 17 00:00:00 2001 From: Hoang Nguyen Date: Mon, 29 Mar 2021 17:50:22 +0700 Subject: [PATCH] ui: fix page size on mobile view (#4765) --- ui/src/style/vars.less | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ui/src/style/vars.less b/ui/src/style/vars.less index 179aabe7dcd..7ee21618a5c 100644 --- a/ui/src/style/vars.less +++ b/ui/src/style/vars.less @@ -239,4 +239,10 @@ a { .custom-icon path { color: @primary-color; } -} \ No newline at end of file +} + +@media only screen and (max-width: 576px) { + .ant-pagination-options { + display: inline-block; + } +} \ No newline at end of file