Skip to content

Commit

Permalink
Merge branch 'main' of github.com:rupali-codes/LinksHub
Browse files Browse the repository at this point in the history
  • Loading branch information
rupali-codes committed Jul 2, 2023
2 parents 938893e + b20b118 commit 1d18c51
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions components/Cards/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ const Card: FC<CardProps> = ({ data }) => {
<CopyToClipboard url={url} />
</header>
<div className="h-[7rem]">
<p
<div
ref={descriptionRef}
className="h-24 w-full overflow-hidden font-sans text-ellipsis line-clamp-4"
>
{description}
</p>
</div>
{isOverflow && (
<p className="text-sm underline text-violet-600 dark:text-violet-400 text-right hover:text-violet-400 dark:hover:text-violet-300">
Read More
Expand Down
2 changes: 1 addition & 1 deletion components/popup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Popup: React.FC<{
<div className="flex flex-col gap-5">
<div className="flex justify-between items-center">
<div className="w-full flex justify-between items-center">
<h2 className="max-w-[80%] text-2xl text-violet-400 capitalize">
<h2 className="text-2xl text-violet-400 capitalize">
{currentCard?.name}
</h2>
</div>
Expand Down
6 changes: 1 addition & 5 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,7 @@ export const sidebarData: ISidebar[] = [
{ name: 'Go', url: '/golang', resources: DB.golang },
{ name: 'TypeScript', url: '/typescript', resources: DB.typescript },
{ name: 'Ruby', url: '/ruby', resources: DB.ruby },
{
name: 'C Programming',
url: '/c-programming',
resources: DB.CProgramming,
},
{ name: 'C Programming', url: '/c-programming', resources: DB.CProgramming },
{ name: 'Java', url: '/java', resources: DB.java },
{ name: 'Kotlin', url: '/kotlin', resources: DB.kotlin },
],
Expand Down
9 changes: 8 additions & 1 deletion database/frontend/ui-generators.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,18 @@
"category": "frontend",
"subcategory": "ui-generators"
},
{
"name": "CSS Filters",
"description": "This is a visual playground for generating CSS for custom and Instagram-like photo filters. Experiment with your own uploaded photo or select one from the Unsplash collection.",
"url": "https://www.cssfilters.co/",
"category": "frontend",
"subcategory": "ui-generators"
},
{
"name": "Patternizer",
"description": "This website will generate CSS code for Patterns",
"url": "https://patternizer.com/",
"category": "Frontend",
"category": "frontend",
"subcategory": "UI Generators"
}
]

0 comments on commit 1d18c51

Please sign in to comment.