forked from Gitlink/forgeplus-react
101 lines
1.9 KiB
SCSS
101 lines
1.9 KiB
SCSS
.invite_development {
|
|
font-family: PingFang SC;
|
|
height: 366px;
|
|
background-image: linear-gradient(
|
|
359.37deg,
|
|
#ebf3ff 0%,
|
|
#eff5ff 55.01%,
|
|
#cfdeff 100%
|
|
);
|
|
border: 1.5px solid #ffffff;
|
|
border-radius: 4px;
|
|
|
|
.ant-modal-close{
|
|
top:0 !important;
|
|
}
|
|
.ant-modal-close-x{
|
|
font-size: 30px;
|
|
color: #666;
|
|
width: 48px;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
transform: scaleX(1.05);
|
|
}
|
|
.ant-modal-content {
|
|
background-color: inherit;
|
|
}
|
|
.ant-modal-header {
|
|
background: inherit;
|
|
border: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
.ownerImage {
|
|
position: relative;
|
|
top:-66px;
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: #e9f1ff;
|
|
border: 1px solid #ffffff;
|
|
border-radius: 50%;
|
|
margin:0 auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
img{
|
|
width: 100%;
|
|
}
|
|
}
|
|
.invite_project {
|
|
display: block;
|
|
margin: 0 auto;
|
|
font-weight: 500;
|
|
font-size: 20px;
|
|
line-height: 22px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.invite_content {
|
|
width: 422px;
|
|
padding: 24px 48px;
|
|
background-color: rgba(225, 231, 255, 0.71);
|
|
border-radius: 4px 4px 0px 0px;
|
|
margin: 10px auto;
|
|
font-weight: 500;
|
|
font-size: 17px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
color: #151d40;
|
|
}
|
|
.link {
|
|
cursor: pointer;
|
|
color: $primary-color;
|
|
&:hover {
|
|
color: $primary-color-hover;
|
|
}
|
|
}
|
|
.ant-modal-footer {
|
|
text-align: center;
|
|
border: 0;
|
|
padding-bottom: 55px;
|
|
button {
|
|
width: 150px;
|
|
height: 42px;
|
|
border-radius: 5px;
|
|
font-size: 15px;
|
|
&:first-child {
|
|
background-color: rgba(196, 0, 14, 0.07);
|
|
border: 1px solid;
|
|
border-color: #f60011;
|
|
color: #f60011;
|
|
&:hover {
|
|
opacity: 0.75;
|
|
}
|
|
}
|
|
& + button {
|
|
margin-left: 30px;
|
|
}
|
|
}
|
|
}
|
|
}
|