* perf: display border status color when the form is verified incorrectly * chore: adjust the document preview file order
18 lines
341 B
CSS
18 lines
341 B
CSS
/* ant-design-vue 组件库的一些样式重置 */
|
|
|
|
.ant-app {
|
|
width: 100%;
|
|
height: 100%;
|
|
overscroll-behavior: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.ant-message-notice-content,
|
|
.ant-notification-notice {
|
|
@apply dark:border-border/60 dark:border;
|
|
}
|
|
|
|
.ant-app .form-valid-error .ant-select-selector {
|
|
border-color: hsl(var(--destructive));
|
|
}
|