This commit is contained in:
scmmishra
2019-02-19 18:25:07 +05:30
parent cb8ef96f6b
commit 62968b318f
6 changed files with 50 additions and 22 deletions

View File

@@ -1,8 +1,8 @@
<template>
<section :class='sectionType'>
<div>
<h3 class='text-center' v-html="title"></h3>
<p class='lead text-center' v-html="description"></p>
<section class="featured-products-section" :class='sectionType'>
<h5 class='featured-heading' v-html="title"></h5>
<div class="featured-products">
<!-- <p class='lead text-center' v-html="description"></p> -->
<slot name="card-list-slot"></slot>
<div class='mt-4 text-center'>
<slot name="list-bottom"></slot>
@@ -15,4 +15,14 @@ export default {
props:['title', 'description', 'sectionType'],
name: "CardList",
};
</script>
</script>
<style scoped>
.featured-heading {
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 12px;
font-weight: 500;
}
</style>