chore: stylelint(use pnpm lint:style)

This commit is contained in:
xingyu
2023-08-04 21:33:00 +08:00
parent 71a874dfb4
commit 784a1be8a1
31 changed files with 296 additions and 149 deletions

View File

@ -52,11 +52,11 @@ const getNickname = (sendFrom: SendFrom) =>
<style lang="scss" scoped>
/* 因为 joolun 实现依赖 avue 组件,该页面使用了 comment.scss、card.scc */
@import '../comment.scss';
@import '../card.scss';
@import url('../comment.scss');
@import url('../card.scss');
.avatar-div {
text-align: center;
width: 80px;
text-align: center;
}
</style>

View File

@ -174,10 +174,10 @@ const scrollToBottom = async () => {
<style lang="scss" scoped>
.msg-div {
height: 50vh;
margin-right: 10px;
margin-left: 10px;
overflow: auto;
background-color: #eaeaea;
margin-left: 10px;
margin-right: 10px;
}
.msg-send {

View File

@ -58,5 +58,5 @@ defineExpose({
<style lang="scss" scoped>
/* 因为 joolun 实现依赖 avue 组件,该页面使用了 card.scss */
@import '../wx-msg/card.scss';
@import url('../wx-msg/card.scss');
</style>

View File

@ -219,8 +219,8 @@ const onChildDragEnd = ({ newIndex }) => {
}
.draggable-ghost {
opacity: 0.5;
background: #f7fafc;
border: 1px solid #4299e1;
opacity: 0.5;
}
</style>