From ee6a32906dca8957a61e49fa19932486e1cc370a Mon Sep 17 00:00:00 2001 From: Xingan Zhao <2081098605@qq.com> Date: Sat, 28 Sep 2024 09:48:21 +0800 Subject: [PATCH] change bg color of container --- src/containers/App/App.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/containers/App/App.css b/src/containers/App/App.css index f4f50a3..0020912 100644 --- a/src/containers/App/App.css +++ b/src/containers/App/App.css @@ -476,23 +476,23 @@ footer a:hover { .rounded-border.rounded-border{ margin: 50px; padding: 50px; - border: 2px solid #f7a901; + border: 2px solid #e4dfb4b0; /* 设置边框的宽度和颜色 */ border-radius: 10px; /* 设置圆角åŠå¾„ */ margin-bottom: 100px; /* max-width: 0.9vw; */ - background-color: #ffa600c0; + background-color: #e4dfb4b0; } .rounded-border.rounded-border:hover{ margin: 50px; padding: 50px; - border: 2px solid #f7a901; + border: 2px solid #e4dfb4b0; /* 设置边框的宽度和颜色 */ border-radius: 10px; /* 设置圆角åŠå¾„ */ margin-bottom: 100px; /* max-width: 0.9vw; */ - background-color: #ffa600c0; + background-color: #e4dfb4b0; box-shadow: 10px 10px 5px rgba(0,0,0,0.1); transform: scale(1.01); } -- GitLab