Skip to content

Commit

Permalink
added vscode icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dheereshagrwal committed Dec 2, 2023
1 parent c92fb00 commit f7e587a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To use the Colored Icons Library, simply add the following CDN link to your HTML
```
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/dheereshagrwal/colored-icons@1.7.2/src/app/ci.min.css"
href="https://cdn.jsdelivr.net/gh/dheereshagrwal/colored-icons@1.7.3/src/app/ci.min.css"
/>
```

Expand Down
Binary file removed public/icons/vscode/vscode.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/ci.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/Icon/IconCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const IconCard: React.FC<IconCardProps> = ({ icon }) => {
<i className={`${icon.classes[0]} ci-2x`}></i>
<span className="flex flex-col gap-1 text-xs">
<h4 className="text-gray-800 font-semibold truncate">{icon.name}</h4>
<h4 className="text-gray-400">{icon.url}</h4>
<h4 className="text-gray-400 text-2xs">{icon.url}</h4>
</span>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions src/constants/icons.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const icons = [
{
name: "VisualStudioCode",
catergory:"technology",
name: "VS Code",
category:"technology",
classes: ["ci ci-vscode"],
url: "code.visualstudio.com"
},
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ const config: Config = {
],
theme: {
extend: {
fontSize: {
"2xs": ["0.625rem", { lineHeight: "0.75rem" }],
},
maxHeight: {
104: "26rem",
112: "28rem",
Expand Down

0 comments on commit f7e587a

Please sign in to comment.