dify/web/app/components/datasets/create/empty-dataset-creation-modal/index.module.css
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

34 lines
639 B
CSS

@reference "../../../../styles/globals.css";
.modalHeader {
@apply flex h-8 place-content-between items-center;
}
.modalHeader .title {
@apply grow text-text-primary;
font-weight: 600;
font-size: 20px;
line-height: 32px;
}
.modalHeader .close {
@apply h-4 w-4 shrink-0 cursor-pointer bg-center bg-no-repeat;
background-image: url(../assets/close.svg);
background-size: 16px;
}
.tip {
@apply mt-1 mb-8 text-text-tertiary;
font-weight: 400;
font-size: 13px;
line-height: 18px;
}
.form {
@apply mb-8;
}
.form .label {
@apply mb-2 text-text-primary;
font-weight: 500;
font-size: 14px;
line-height: 20px;
}