Skip to content

Commit

Permalink
Merge pull request #7 from pshenmic/feat/new-design
Browse files Browse the repository at this point in the history
Fix scroll on mac and layout styles bugs
  • Loading branch information
pshenmic authored Feb 2, 2024
2 parents 17bc500 + 7a73dd0 commit 2cdb4ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/app/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ body {
width: 1460px;
height: 1460px;
background: rgba(0, 117, 255, 0.40);

z-index: -1;
filter: blur(445.5px);
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/Projects/Project.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function Project ({ project, closeHandler, id }) {
{( project.projectLink &&
<Link
className='Project__Link Project__Link--Project'
href={ project.gihubLink }
href={ project.projectLink }
target="_blank"
>
<span>Project</span>
Expand Down
1 change: 1 addition & 0 deletions src/components/Services/ServicesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ function ServicesList ({servicesList = defaultServicesList}) {
>
<Link
href={service.link}
target="_blank"
className='Service'
>
<div className='Service__Title'>{ service.title }</div>
Expand Down
6 changes: 1 addition & 5 deletions src/components/Updates/Updates.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
.Devspace {
@media screen and ( min-width: 500px ) and ( max-width: 680px ) {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

}

0 comments on commit 2cdb4ed

Please sign in to comment.