fix(NoticeMessage): set missing box-sizing border-box values

This commit is contained in:
DEV_DSW
2026-05-29 09:42:44 +08:00
parent a5eb9a042d
commit 7f68ee06b7
2 changed files with 2 additions and 2 deletions

View File

@@ -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>

View File

@@ -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 {