Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions personal-portfolio/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,15 @@ nav.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 0 55px 55px 0;
}
.nav-link#projects-tabs-tab-first:hover {
cursor: pointer;
}
.nav-link#projects-tabs-tab-second:hover {
cursor: pointer;
}
.nav-link#projects-tabs-tab-third:hover {
cursor: pointer;
}
.proj-imgbx {
position: relative;
border-radius: 30px;
Expand All @@ -430,6 +439,7 @@ nav.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
}
.proj-imgbx:hover::before {
height: 100%;
cursor: pointer;
}
.proj-txtx {
position: absolute;
Expand All @@ -444,6 +454,7 @@ nav.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
.proj-imgbx:hover .proj-txtx {
top: 50%;
opacity: 1;
cursor: pointer;
}
.proj-txtx h4 {
font-size: 30px;
Expand Down
2 changes: 1 addition & 1 deletion personal-portfolio/src/components/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const Projects = () => {
];

return (
<section className="project" id="project">
<section className="project" id="projects">
<Container>
<Row>
<Col size={12}>
Expand Down