Skip to content

Commit 144600c

Browse files
committed
Redo signup page
1 parent 3ec1f91 commit 144600c

File tree

6 files changed

+478
-131
lines changed

6 files changed

+478
-131
lines changed

src/assets/github.png

1.64 KB
Loading

src/assets/google.png

1.85 KB
Loading

src/components/table.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ export default function Table(props) {
100100
? props.tableData.name.length < 10
101101
? props.tableData.name
102102
: `${props.tableData.name.substring(0, 10)}...`
103-
: props.tableData.name.length < 14
103+
: props.tableData.name.length < 16
104104
? props.tableData.name
105-
: `${props.tableData.name.substring(0, 14)}...`}
105+
: `${props.tableData.name.substring(0, 16)}...`}
106106
</div>
107107
{isHovered && (
108108
<div className="flex justify-end items-center mx-2">

0 commit comments

Comments
 (0)