chore: update base font size

This commit is contained in:
Steven
2023-07-31 00:16:34 +08:00
parent f5463af7db
commit 6f9df9dfd7
4 changed files with 13 additions and 15 deletions

View File

@@ -22,7 +22,7 @@ const ViewSetting = () => {
<Icon.Settings2 className="w-4 h-auto text-gray-500" />
</button>
}
actionsClassName="top-7 !-right-2"
actionsClassName="top-8 !-right-2"
actions={
<div className="w-52 p-2 pt-0 gap-2 flex flex-col justify-start items-start" onClick={(e) => e.stopPropagation()}>
<div className="w-full flex flex-row justify-between items-center mt-1">

View File

@@ -7,7 +7,7 @@ const MemberSection = () => {
const userStore = useUserStore();
const [showCreateUserDialog, setShowCreateUserDialog] = useState<boolean>(false);
const [currentEditingUser, setCurrentEditingUser] = useState<User | undefined>(undefined);
const userList = Object.values(userStore.userMap);
const userList = Object.values(userStore.userMapById);
useEffect(() => {
userStore.fetchUserList();