From e825d510befe85189dca5c0942b1716a284a4feb Mon Sep 17 00:00:00 2001 From: zhangjingwei Date: Mon, 1 Apr 2024 15:15:07 +0800 Subject: [PATCH] feat: limit the height of prompts In order to display table data well in the list page, limit the height of prompts Change-Id: I744d1b87a9e9545968cac12bae4f8cf257f3f526 --- src/containers/List/index.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/containers/List/index.less b/src/containers/List/index.less index e58bbcb2..78290fbc 100644 --- a/src/containers/List/index.less +++ b/src/containers/List/index.less @@ -20,5 +20,10 @@ color: @warn-color; } } + + .ant-alert-message { + max-height: 40px; + overflow-y: auto; + } } }