Skip to content

Commit

Permalink
added quote in testimonial (#982)
Browse files Browse the repository at this point in the history
Co-authored-by: Taron Chatoyan <chatoyan48@gmailc.com>
  • Loading branch information
t-chatoyan and Taron Chatoyan authored Mar 2, 2024
1 parent 5210db5 commit 275c752
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions components/home/TestimonialsItem.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<div class="card mb-3 bg-dark-2">
<div class="card-body d-flex flex-column justify-content-between">
<p>
<span class="card-quote">“</span>
<p class="mt-3">
{{ item.message }}
</p>
<div class="footer">
Expand Down Expand Up @@ -29,11 +30,25 @@
@import "../../assets/styles/variable";
.card {
border: $block-border;
height: calc($spacer * 16.188);
max-height: calc($spacer * 16.188);
height: calc($spacer * 18.617);
max-height: calc($spacer * 18.617);
@include media-breakpoint-down(xl) {
height: calc($spacer * 22);
max-height: calc($spacer * 22);
}
@include media-breakpoint-down(md) {
height: calc($spacer * 20);
max-height: calc($spacer * 20);
}
.card-body {
padding: $rem-2;
text-align: left;
.card-quote {
color: $purple-35;
font-size: calc($font-size-base * 4.625);
line-height: calc($spacer * 3.75);;
height: 22px;
}
p, .footer a {
color: $white-6 !important;
}
Expand Down

0 comments on commit 275c752

Please sign in to comment.