Skip to content

Commit

Permalink
change some animations direction + update csv
Browse files Browse the repository at this point in the history
  • Loading branch information
YanivWein24 committed May 9, 2024
1 parent c89b383 commit 5db80da
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
Binary file modified src/assets/Yaniv-Resume.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function About() {
</div>
<div className="backgroundLinear">
<Row className="about-me no-gutters mx-auto">
<Col xs={12} data-aos="fade-down" data-aos-once="true">
<Col xs={12} data-aos="fade-up" data-aos-once="true">
<h1 className="aboutMeHeader">{Text.headers.aboutMe}</h1>
</Col>
<Col
Expand Down
2 changes: 1 addition & 1 deletion src/components/Skills/Skills.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
margin: 4rem auto;
padding-bottom: 1rem;
text-align: center;
overflow-x: hidden;
overflow: hidden;
}

.skillContainer {
Expand Down
5 changes: 1 addition & 4 deletions src/components/Skills/Skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ export default function Skills() {

return (
<div className="skills" id="Skills">
<h1
data-aos={mobileSize ? "fade-right" : "fade-down"}
data-aos-once="true"
>
<h1 data-aos={mobileSize ? "fade-right" : "fade-up"} data-aos-once="true">
{Text.headers.skills}
</h1>
<Row className={`${!mobileSize && "container"} mx-auto`}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Timeline/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Anchor from "../../assets/media/anchor.svg";
export default function Timeline() {
return (
<div className="timeline-container">
<h1 id="Experience" data-aos="fade-down" data-aos-once="true">
<h1 id="Experience" data-aos="fade-up" data-aos-once="true">
{Text.headers.experience}
</h1>
<VerticalTimeline>
Expand Down

0 comments on commit 5db80da

Please sign in to comment.