Skip to content

Commit

Permalink
Update the arrows to be closer to Figma
Browse files Browse the repository at this point in the history
## What
I updated the project to include font awesome which has a lot of arrows that would work. https://fontawesome.com/search?q=arrow&o=r&m=free&c=arrows

Unfortunately, the one in the figma involves arrows which cost money (pro) and layering so I couldn't go that far, but his one is a single glyph which mostly gets the job done with less pain in the css. Going to just recommend we keep this unless there's a reason to work on the css layering for better testimonial arrows.
  • Loading branch information
darthwing-duck committed Nov 8, 2023
1 parent 5d3375a commit 2b5d973
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions _includes/testimonials.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
}

.carousel-arrows {
position: relative;
text-align: right;
font-size: x-large;
margin-top: -30px;
Expand All @@ -19,7 +20,7 @@
}

.carousel-arrows span:hover{
color: #{{site.data.template.color.mkpyellow}};
color: #{{site.data.template.color.mkpYellow}};
}

.slick-track {
Expand Down Expand Up @@ -53,8 +54,8 @@ <h3 class="section-subheading text-muted text-center">{{ s.subtitle }}</h3>
{% endfor %}
</div>
<div class="carousel-arrows">
<span class="prev fa-solid fa-chevron-circle-left"></span>
<span class="next fa-solid fa-chevron-circle-right"></span>
<span class="prev fa-regular fa-circle-left"></span>
<span class="prev fa-regular fa-circle-right"></span>
</div>

<script src="{{ '/static/js/jquery-1.11.0.js' | prepend: site.baseurl }}"></script>
Expand Down

0 comments on commit 2b5d973

Please sign in to comment.