Skip to content

Commit

Permalink
fix senior tile styling
Browse files Browse the repository at this point in the history
  • Loading branch information
wkim10 committed Apr 4, 2024
1 parent 24c3c70 commit d9eac21
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/TileGrid/UserTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ export function UserTile({
dropdownComponent,
}: UserTileProps) {
return (
<div className="w-48 rounded-lg bg-white shadow-lg">
<div
className={
(student ? "w-48 " : "w-40 ") + "rounded-lg bg-white shadow-lg"
}
>
<div className="h-40 w-full rounded-lg bg-white drop-shadow-md hover:bg-off-white">
<Link
href={link}
Expand Down

0 comments on commit d9eac21

Please sign in to comment.