From c892b74fe3d0a543fcfe82abbfd23fab798f8125 Mon Sep 17 00:00:00 2001 From: Qinyang Liu <93815242+willow-god@users.noreply.github.com> Date: Sun, 9 Jun 2024 11:36:09 +0800 Subject: [PATCH] fix:The first theme image is highly out of range Solve the problem of poor display effect caused by the height of the cover image exceeding the range under the first theme --- src/index.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 128c6b3..32ba69b 100644 --- a/src/index.css +++ b/src/index.css @@ -13,6 +13,11 @@ height:36rem; } +/* Solve the problem of poor display effect caused by the height of the cover image exceeding the range under the first theme */ +.h-max.w-full { + height: 420px; +} + .h-99{ height:35rem; } @@ -35,4 +40,4 @@ Track /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #b3b3ff; -} \ No newline at end of file +}