chore: remove part of less files (#1314)

This commit is contained in:
boojack 2023-03-08 22:05:43 +08:00 committed by GitHub
parent 3a466ad2a1
commit 390e29f850
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 35 deletions

View file

@ -3,7 +3,6 @@ import { useGlobalStore } from "../store/module";
import Icon from "./Icon";
import { generateDialog } from "./Dialog";
import GitHubBadge from "./GitHubBadge";
import "../less/about-site-dialog.less";
type Props = DialogProps;
@ -27,7 +26,7 @@ const AboutSiteDialog: React.FC<Props> = ({ destroy }: Props) => {
<Icon.X />
</button>
</div>
<div className="dialog-content-container">
<div className="flex flex-col justify-start items-start max-w-full">
<p className="text-sm">{customizedProfile.description || "No description"}</p>
<div className="mt-4 flex flex-row text-sm justify-start items-center">
<div className="flex flex-row justify-start items-center mr-2">

View file

@ -5,7 +5,6 @@ import { useMemoStore } from "../store/module";
import Icon from "./Icon";
import { generateDialog } from "./Dialog";
import toastHelper from "./Toast";
import "../less/change-memo-created-ts-dialog.less";
interface Props extends DialogProps {
memoId: MemoId;
@ -69,7 +68,7 @@ const ChangeMemoCreatedTsDialog: React.FC<Props> = (props: Props) => {
<Icon.X />
</button>
</div>
<div className="dialog-content-container">
<div className="flex flex-col justify-start items-start !w-72 max-w-full">
<p className="w-full bg-yellow-100 border border-yellow-400 rounded p-2 text-xs leading-4">
THIS IS NOT A NORMAL BEHAVIOR. PLEASE MAKE SURE YOU REALLY NEED IT.
</p>
@ -80,7 +79,7 @@ const ChangeMemoCreatedTsDialog: React.FC<Props> = (props: Props) => {
max={maxDatetimeValue}
onChange={handleDatetimeInputChange}
/>
<div className="btns-container">
<div className="flex flex-row justify-end items-center mt-2 w-full">
<span className="btn-text" onClick={handleCloseBtnClick}>
{t("common.cancel")}
</span>

View file

@ -1,13 +0,0 @@
.about-site-dialog {
> .dialog-container {
@apply w-112 max-w-full;
> .dialog-content-container {
@apply flex flex-col justify-start items-start;
> p {
@apply my-1;
}
}
}
}

View file

@ -1,17 +0,0 @@
.change-memo-created-ts-dialog {
> .dialog-container {
@apply w-72;
> .dialog-content-container {
@apply flex flex-col justify-start items-start;
> .tip-text {
@apply bg-gray-400 text-xs p-2 rounded-lg;
}
> .btns-container {
@apply flex flex-row justify-end items-center mt-2 w-full;
}
}
}
}