Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mustcodes authored Jan 17, 2024
1 parent 05a66c3 commit acd5887
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions style2.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@import "./variables", "./reset", "./menu", "./home", "./about", "./experience",
"./projects", "./services", "./skills", "./footer";

.typewriter:after {
content: "|";
margin-left: $gap-1;
opacity: 1;
animation: blink 1s infinite;
color: $color-main;
}

@keyframes blink {
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}

.grid-layout {
@include grid-layout();
}

0 comments on commit acd5887

Please sign in to comment.