Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit e041a78

Browse files
Merge branch 'master' into new-mobile-navbar
2 parents d14f843 + cc88cdf commit e041a78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/About.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default {
3030
</script>
3131
<style lang="scss" scoped>
3232
#about {
33-
height: 100vh;
33+
min-height: 100vh;
3434
width: 100%;
3535
display: flex;
3636
flex-direction: column;

src/components/Testimonial.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<b-card-groups class="testimonialContainer">
2+
<b-card-group class="testimonialContainer">
33
<b-card v-for="testimonial in testimonials" class="testimonial" :key="testimonial.id">
44
<div id="hearts">
55
<i class="material-icons" v-for="n in testimonial.stars" :key="n" style="text-align: center; color: #dc3545;">favorite</i>
@@ -10,7 +10,7 @@
1010
<footer class="blockquote-footer">{{ testimonial.author }}: <cite title="Source Title">{{ testimonial.specialization }}</cite></footer>
1111
</blockquote>
1212
</b-card>
13-
</b-card-groups>
13+
</b-card-group>
1414
</template>
1515
<script>
1616
export default {

0 commit comments

Comments
 (0)