Skip to content

Commit

Permalink
Small spacing tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jaaimino committed Oct 30, 2024
1 parent da90d53 commit 32be19d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/roster-card/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export default function RosterCard(props) {
</Menu>
</Group>
<Stack mt="md">
<Image style={{ maxHeight: '250px' }} radius="md" src={`${API_PATH}/rosterportrait.php?rid=${roster.rosterid}`} />
<Group justify="space-between">
<Image style={{ maxHeight: '200px' }} radius="md" src={`${API_PATH}/rosterportrait.php?rid=${roster.rosterid}`} />
<Group justify="space-between" gap={5}>
<Group>
{!!roster.spotlight ? <IconStarFilled /> : <IconStar />}
<Group gap={5}><IconEye />{roster.viewcount.toString()}</Group>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function Home() {
<Text fs="italic">
{spotlight.operatives.map((operative) => operative.opname).join(', ')}
</Text>
<Group justify="space-between">
<Group justify="space-between" gap={5}>
<Group>
{!!spotlight.spotlight ? <IconStarFilled /> : <IconStar />}
<Group gap={5}><IconEye />{spotlight.viewcount.toString()}</Group>
Expand Down

0 comments on commit 32be19d

Please sign in to comment.