101 lines
1.9 KiB
SCSS
101 lines
1.9 KiB
SCSS
![]() |
.shareList {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
row-gap: 16px;
|
||
|
.shareCard {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
row-gap: 4px;
|
||
|
padding: 13px 23px 9px;
|
||
|
box-sizing: border-box;
|
||
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
|
||
|
.closeIcon {
|
||
|
position: absolute;
|
||
|
top: 16px;
|
||
|
right: 16px;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.shareName {
|
||
|
font-size: 18px;
|
||
|
font-weight: 700;
|
||
|
line-height: 26px;
|
||
|
}
|
||
|
.shareLinkWrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
row-gap: 4px;
|
||
|
margin-top: 16px;
|
||
|
margin-bottom: 4px;
|
||
|
word-break: break-all;
|
||
|
font-size: 14px;
|
||
|
.shareLink {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
column-gap: 4px;
|
||
|
}
|
||
|
}
|
||
|
.btnWrapper {
|
||
|
display: flex;
|
||
|
column-gap: 12px;
|
||
|
width: 100%;
|
||
|
.downloadMore {
|
||
|
height: 30px;
|
||
|
font-size: 14px;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.addShareLink {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
row-gap: 8px;
|
||
|
height: 108px;
|
||
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
|
||
|
}
|
||
|
.materialCard {
|
||
|
height: 184px;
|
||
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
|
||
|
.sysShareImg {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 129px;
|
||
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
|
||
|
}
|
||
|
.materialCardBottom {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
column-gap: 24px;
|
||
|
margin-top: 10px;
|
||
|
color: #29bbe4;
|
||
|
.divider {
|
||
|
width: 2px;
|
||
|
height: 39px;
|
||
|
border-radius: 5px;
|
||
|
background-color: #c2c2c2;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.shareCodeWrapper {
|
||
|
display: flex;
|
||
|
align-items: flex-end;
|
||
|
column-gap: 12px;
|
||
|
}
|
||
|
.shareCodeContent {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
padding: 3px;
|
||
|
width: max-content;
|
||
|
background-image: linear-gradient(90deg, #103776 0%, #92dbed 100%);
|
||
|
}
|