统一深色模式样式

This commit is contained in:
LeonspaceX
2025-12-06 13:10:45 +08:00
parent f2050fc291
commit daef092653
4 changed files with 84 additions and 95 deletions

View File

@@ -12,7 +12,7 @@ import {
import { Dismiss24Regular, ArrowReply24Regular } from '@fluentui/react-icons';
import { getComments, postComment } from '../api';
import type { Comment as CommentType } from '../api';
import { toast, Toaster } from 'react-hot-toast';
import { toast } from 'react-hot-toast';
const useStyles = makeStyles({
container: {
@@ -225,7 +225,6 @@ const CommentSection: React.FC<CommentSectionProps> = ({ postId }) => {
{!loading && comments.length === 0 && <Text></Text>}
{renderComments()}
</div>
<Toaster position="top-center" />
</div>
);
};