From 928c61ccddebc8d2c697b86ee9bee0c207330a8c Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周二, 06 5月 2025 07:18:22 +0800 Subject: [PATCH] 222 --- HIAWms/web/src/components/BaseContent/BaseContent.module.scss | 61 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 0 deletions(-) diff --git a/HIAWms/web/src/components/BaseContent/BaseContent.module.scss b/HIAWms/web/src/components/BaseContent/BaseContent.module.scss new file mode 100644 index 0000000..e97f737 --- /dev/null +++ b/HIAWms/web/src/components/BaseContent/BaseContent.module.scss @@ -0,0 +1,61 @@ +.container { + background-color: #fff; + border-radius: 5px 5px 0 0; + width: 100%; + height: 100%; + border: 1px solid #dbdbdb; + font-family: PingFang SC, PingFang SC; + padding: 0 12px; + position: relative; + + .title { + font-size: 16px; + font-weight: bold; + color: #35363b; + margin-left: 6px; + } + .header { + display: flex; + justify-content: flex-start; + align-items: center; + width: 100%; + height: 46px; + padding: 0 20px; + } + .footer { + display: flex; + align-items: center; + width: 100%; + height: 50px; + padding: 0 20px; + border: 1px solid #e1e1e1; + border-left: 0; + border-right: 0; + position: absolute; + bottom: 0; + left: 0; + } +} +.content { + padding: 15px 20px 0; + height: calc(100% - 46px); + box-sizing: border-box; + height: auto; + background: #f7f8fa; + border-radius: 5px 5px 5px 5px; + padding: 14px 14px 20px 14px; + + .header { + margin-bottom: 12px; + display: flex; + align-items: center; + .searchInner { + margin-left: auto; + width: 200px; + } + // padding: 20px; + } + .mainTable { + height: calc(100% - 36px); + } +} -- Gitblit v1.9.3