Skip to content

Commit

Permalink
style: change row gap
Browse files Browse the repository at this point in the history
  • Loading branch information
JaneMoroz committed Sep 9, 2023
1 parent 4987284 commit dd62b15
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/app/directory/components/TeamRow.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.table :where(td) {
@apply py-1;
}

.table :where(th) {
@apply pb-6;
}
5 changes: 4 additions & 1 deletion src/app/directory/components/TeamTable.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import styles from "./TeamRow.module.css";
import { teamMembers } from "./fixtures/MyTeam";
import { TeamRow } from ".";

Expand All @@ -7,7 +8,9 @@ const currentUserId = "1";
function TeamTable() {
return (
<div className="overflow-x-auto">
<table className="table px-6 border-separate border-none bg-primary-content py-7">
<table
className={`table px-6 pb-10 border-separate border-none bg-primary-content pt-7 ${styles["table"]}`}
>
{/* head */}
<thead className="mb-10 text-xl font-semibold text-black">
<tr>
Expand Down

0 comments on commit dd62b15

Please sign in to comment.