Skip to content

Commit

Permalink
Some design adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-lalanne committed Feb 17, 2024
1 parent baf6b6f commit a7aec96
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions portfolio/src/components/home/CustomFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,9 @@ $jumpHeight: -100px;
left: 100%;
}
}
@media (max-width: 768px) {
.cheep-cheep-container img {
animation-duration: 5s !important;
}
}
</style>
5 changes: 5 additions & 0 deletions portfolio/src/components/projects/ProjectPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ export default {
height: inherit;
}
}
@media (max-width: 1700px) {
.project-preview-container {
height: unset;
}
}
</style>

<style lang="scss">
Expand Down
4 changes: 3 additions & 1 deletion portfolio/src/components/projects/ProjectsSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -551,9 +551,11 @@ $arrow-separator-height: 100px;
.pagination-btn {
display: none;
}
.mario-walking-content {
animation-duration: 2s !important;
}
}
@media (max-width: 1700px) {
.all-projects-container {
height: unset;
}
Expand Down
4 changes: 2 additions & 2 deletions portfolio/src/components/shared/GlitchText.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="container" :style="`--content-var: '${text}';`">
<div class="container" :style="`--content-var: '${text.toUpperCase()}';`">
<div class="content">
{{ text }}
{{ text.toUpperCase() }}
</div>
</div>
</template>
Expand Down

0 comments on commit a7aec96

Please sign in to comment.