Files
code-box/sidepanel/index.module.scss
2024-09-25 16:28:44 +08:00

45 lines
989 B
SCSS

.sidepanel {
margin: 0 auto;
padding: 10px 15px;
:global {
.wechat {
text-align: center;
.wechatDesc {
font-size: 14px;
color: red;
}
.wechatImg {
margin: 0 auto;
width: 150px;
}
}
.valid {
color: red;
}
.contentTitle {
margin: 15px 0 10px 0;
}
.item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
font-size: 16px;
}
.item.download {
cursor: pointer;
}
.item.code {
cursor: pointer;
height: 20px;
}
.item.code .codeTxt {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
flex: 1;
}
}
}