Commit c2ab05d4 authored by Steven's avatar Steven

chore: fix member section style

parent 7b25b8c1
......@@ -13,7 +13,7 @@ interface State {
createUserPassword: string;
}
const PreferencesSection = () => {
const MemberSection = () => {
const t = useTranslate();
const userStore = useUserStore();
const currentUser = userStore.state.user;
......@@ -132,7 +132,7 @@ const PreferencesSection = () => {
<div className="w-full flex flex-row justify-between items-center mt-6">
<div className="title-text">{t("setting.member-list")}</div>
</div>
<div className="w-full overflow-x-auto max-h-[calc(100%-22rem)]">
<div className="w-full overflow-x-auto">
<div className="inline-block min-w-full align-middle">
<table className="min-w-full divide-y divide-gray-300 dark:divide-gray-400">
<thead>
......@@ -214,4 +214,4 @@ const PreferencesSection = () => {
);
};
export default PreferencesSection;
export default MemberSection;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment