2023-11-27-dist 字体放大

This commit is contained in:
X1627315083
2023-11-27 16:25:32 +08:00
parent 1f52565aad
commit 6e39ebf5ed
50 changed files with 1995 additions and 227 deletions

View File

@@ -6,6 +6,10 @@ body,
height: 100%;
font-family: 'Roboto', sans-serif;
overflow: hidden;
--aida-fsize2: 2.2rem;
--aida-fsize1-8: 1.8rem;
--aida-fsize1-6: 1.6rem;
--aida-fsize1-4: 1.4rem;
}
input {
outline: none;
@@ -498,6 +502,12 @@ li {
.libraryPageCascader .ant-cascader-menu {
margin-top: 4rem;
}
.collection_modal .ant-modal-content,
.design_detail_modal_component .ant-modal-content,
.designOpenrtion_modal .ant-modal-content {
transform: scale(1.2);
transform-origin: center !important;
}
.collection_modal .ant-modal-body,
.design_detail_modal_component .ant-modal-body,
.designOpenrtion_modal .ant-modal-body,
@@ -508,7 +518,7 @@ li {
.design_detail_modal_component .design_title_text,
.designOpenrtion_modal .design_title_text,
.library_page .design_title_text {
font-size: 1.8rem;
font-size: var(--aida-fsize2);
font-weight: 900;
color: rgba(0, 0, 0, 0.65);
align-items: center;
@@ -518,7 +528,7 @@ li {
.design_detail_modal_component .design_title_text .design_title_text_intro,
.designOpenrtion_modal .design_title_text .design_title_text_intro,
.library_page .design_title_text .design_title_text_intro {
font-size: 1.2rem;
font-size: var(--aida-fsize1-4);
font-weight: 400;
color: rgba(0, 0, 0, 0.45);
}

View File

@@ -6,6 +6,10 @@ html,body,#app{
font-family: 'Roboto', sans-serif;
overflow: hidden;
// --antd-wave-shadow-color: #341e57;
--aida-fsize2: 2.2rem;
--aida-fsize1-8: 1.8rem;
--aida-fsize1-6: 1.6rem;
--aida-fsize1-4: 1.4rem;
}
input{
outline:none
@@ -344,7 +348,14 @@ ul,li{
}
//弹窗公共样式
.ant-modal{
&.ant-modal-confirm{
&.ant-modal-confirm-confirm{
// top: 50%;
// transform: translateY(-50%);
}
}
}
.modal_component{
&.ant-modal{
@@ -352,7 +363,6 @@ ul,li{
}
.ant-modal-content{
overflow: hidden;
.ant-modal-header{
padding: 2.4rem 2.6rem;
background: #F7F7F7;
@@ -585,21 +595,26 @@ ul,li{
margin-top: 4rem;
}
}
.collection_modal,.design_detail_modal_component,.designOpenrtion_modal{
.ant-modal-content{
transform: scale(1.2);
transform-origin: center !important;
}
}
//collection 弹窗
.collection_modal,.design_detail_modal_component,.designOpenrtion_modal,.library_page{
.ant-modal-body{
overflow-y: hidden;
}
.design_title_text{
font-size: 1.8rem;
font-size: var(--aida-fsize2);
font-weight: 900;
color: rgba(0,0,0,.65);
align-items: center;
margin-bottom: 2rem;
.design_title_text_intro{
font-size: 1.2rem;
font-size: var(--aida-fsize1-4);
font-weight: 400;
color: rgba(0,0,0,.45);
}