Skip to content

Commit

Permalink
Merge pull request #7 from ajravinath/dev
Browse files Browse the repository at this point in the history
Add so icon
  • Loading branch information
ajravinath authored Oct 30, 2023
2 parents 30015a7 + 3883497 commit 6939beb
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 252 deletions.
Binary file added .DS_Store
Binary file not shown.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
"Calcey",
"checkmark",
"corejs",
"gradiant",
"Kotelawala",
"papaparse",
"Ranwalage",
"Visni"
]
],
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "anuja-me",
"version": "2.2.2",
"version": "2.2.3",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
Binary file added src/assets/stackoverflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/components/section-profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ const SectionProfile = () => {
Contact Info
</button>
</div>
<div id="socials-container">
<img src="./linkedin.png" alt="linkedIn" class="icon" onclick="window.open('https://www.linkedin.com/in/anuja-ranwalage/', '_blank')" />
<img src="./github.png" alt="github" class="icon" onclick="window.open('https://github.com/ajravinath', '_blank')" />
<div id="socials-container">
<img src="./linkedin.png" alt="linkedIn" class="icon" title="linkedIn" onclick="window.open('https://www.linkedin.com/in/anuja-ranwalage/', '_blank')" />
<img src="./github.png" alt="github" class="icon" title="github" onclick="window.open('https://github.com/ajravinath', '_blank')" />
<img src="./stackoverflow.png" alt="stackoverflow" title="stackoverflow" class="icon round" onclick="window.open('https://stackoverflow.com/users/4288706/anuja', '_blank')" />
</div>
</div>
</section>
Expand Down
6 changes: 5 additions & 1 deletion src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ section {
.icon {
cursor: pointer;
height: 2rem;
&.round {
background-color: white;
border-radius: 50%;
}
}

.btn-container {
Expand Down Expand Up @@ -484,4 +488,4 @@ footer {
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
}
Loading

0 comments on commit 6939beb

Please sign in to comment.