dify/web/app/components/datasets/create/empty-dataset-creation-modal/index.module.css
Stephen Zhou 1873b22e96
refactor: update to tailwind v4 (#34415)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
2026-04-02 07:06:11 +00:00

38 lines
680 B
CSS

@reference "../../../../styles/globals.css";
.modal {
position: relative;
}
.modalHeader {
@apply flex items-center place-content-between h-8;
}
.modalHeader .title {
@apply grow text-text-primary;
font-weight: 600;
font-size: 20px;
line-height: 32px;
}
.modalHeader .close {
@apply shrink-0 h-4 w-4 bg-center bg-no-repeat cursor-pointer;
background-image: url(../assets/close.svg);
background-size: 16px;
}
.modal .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;
}