Skip to content

Commit

Permalink
Added left and right margins to ExecProfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rishit-singh committed Dec 27, 2023
1 parent eb1454a commit fb488d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/ExecProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const PositionStrings: string[] = [
export default function ExecProfile({ID, Name, ImageBuffer, Position, Description} : ExecProfileProps)
{
return (
<div className={"flex items-start"}>
<div className={"flex items-start ml-10 mr-10"}>
<div className="box-border bg-[#262626] p-4 rounded">
<div className={"flex flex-row gap-3 text-lg max-[600px]:text-xs items-start"}>
<div className={"relative border-box h-100 w-10 rounded basis-1/6 max-[600px]:basis-1/4 shrink-0 "}>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/app/about/AboutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export function AboutPage({} : AboutPageProps)

const mainDispatch = useAppDispatch();

// fetch the profiles if not done already
useEffect(() => {
(async () => {
if (execProfiles.length < 1)
Expand Down

0 comments on commit fb488d1

Please sign in to comment.