Skip to content

Commit

Permalink
🐛 A bit more CSS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AJR07 committed Jul 14, 2024
1 parent 1ec3d97 commit b2e86d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
alert: AlertType | null = null,
searchTerm = '',
innerWidth = 0,
innerHeight = 0;
innerHeight = 0,
overflowButton = false;
// link data
let linkData = new LinkData();
Expand Down Expand Up @@ -134,7 +135,7 @@
{#if searchTerm === '' || link.alias.includes(searchTerm)}
<Card override={{ background: 'transparent !important', border: '0 !important' }}>
<Group position="apart">
<Text weight="bold" lineClamp={1} override={{width: "min-content"}}>
<Text weight="bold">
<a href={`${origin}/${link.alias}`}>{`${origin}/${link.alias}`}</a>
</Text>
<Badge color="yellow" variant="light">{`${link.views} views`}</Badge>
Expand Down Expand Up @@ -237,7 +238,6 @@
#left-column {
width: calc(100vw - 30px);
height: 100vh;
margin: 5px;
overflow: unset;
}
Expand Down

0 comments on commit b2e86d2

Please sign in to comment.