Skip to content

Commit

Permalink
not display skills on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
VikiMaiselman committed Feb 13, 2024
1 parent 3c92851 commit 454a1f4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Personal-Website/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ a:hover {
transition: transform 1s, opacity 2s;
}
.hidden {
opacity: 0;
transform: translateY(2rem);
}
opacity: 0;
transform: translateY(2rem);
}

#experience {
background-image: url("../assets/images/leone-venter-unsplash.jpg"),
Expand Down Expand Up @@ -263,6 +263,11 @@ section a:hover {
}

/* S K I L L S */
@media (max-width: 600px) {
#skills {
display: none;
}
}
.grid-container {
display: grid;
grid-template-rows: repeat(5, 1fr) 0.5fr;
Expand Down

0 comments on commit 454a1f4

Please sign in to comment.