reduce support page spacees and add btns

This commit is contained in:
samaradel
2021-07-29 08:57:32 +00:00
parent 748efed78a
commit 14379bfdb8
17 changed files with 213 additions and 67 deletions

View File

@@ -6,17 +6,46 @@
{{ header.subtitle }}
</h2>
<div
v-if="header.content"
v-html="header.content"
class="mb-8 text-gray-700 leading-relaxed"
></div>
<div>
<g-link
class="inline-block bg-green-500 text-sm text-white learn-button hover:bg-green-600 px-8 py-2 mr-2 my-0 rounded shadow rounded-full active--exact active"
v-if="header.btn1"
class="
inline-block
bg-green-500
text-sm text-white
learn-button
hover:bg-green-600
px-8
py-2
mr-2
my-0
rounded
shadow
rounded-full
active--exact active
"
v-if="header.btn1"
:to="header.link1"
>{{ header.btn1 }}</g-link
><g-link
class="inline-block bg-teal-300 text-sm learn-button hover:bg-teal-400 text-gray-900 px-12 py-2 mr-3 my-2 rounded shadow rounded-full"
class="
inline-block
bg-teal-300
text-sm
learn-button
hover:bg-teal-400
text-gray-900
px-12
py-2
mr-3
my-2
rounded
shadow
rounded-full
"
v-if="header.btn2"
:to="header.link2"
>{{ header.btn2 }}</g-link
@@ -32,5 +61,4 @@ export default {
};
</script>
<style scoped>
</style>