fix(NoticeMessage): set missing box-sizing border-box values
This commit is contained in:
@@ -70,6 +70,6 @@ const noticeContent = computed(() => {
|
|||||||
background: linear-gradient(180deg, #f4f7fb 0%, #e9eef6 100%);
|
background: linear-gradient(180deg, #f4f7fb 0%, #e9eef6 100%);
|
||||||
border: 1px solid #d6dde8;
|
border: 1px solid #d6dde8;
|
||||||
border-radius: 14px;
|
border-radius: 14px;
|
||||||
box-sizing: ;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ const clickItem = (item) => {
|
|||||||
border: 1px solid #C7D2FE;
|
border: 1px solid #C7D2FE;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
box-sizing: ;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.noMessage-text {
|
.noMessage-text {
|
||||||
|
|||||||
Reference in New Issue
Block a user