Section Footer

Section footers provide space for actions related to the current section on a screen.

Sample 01

Code
<template>  <section class="flex justify-between flex-wrap border-t border-gray-200 pt-6">    <div class="flex gap-3 md:gap-5">      <VBtnGroup>        <VBtn class="!hidden lg:!flex">12 months</VBtn>        <VBtn class="lg:!hidden">12m</VBtn>        <VBtn class="!hidden lg:!flex">30 days</VBtn>        <VBtn class="lg:!hidden">30d</VBtn>        <VBtn class="!hidden lg:!flex">7 days</VBtn>        <VBtn class="lg:!hidden">7d</VBtn>        <VBtn prefixIcon="ri:add-fill" class="!hidden lg:!flex">Custom</VBtn>        <VBtn prefixIcon="ri:add-fill" class="lg:!hidden"></VBtn>      </VBtnGroup>      <VBtn text flush noRing class="!text-gray-600">Learn more</VBtn>    </div>    <div class="flex gap-3 mt-4 md:mt-0">      <VBtn text flush noRing>Tertiary</VBtn>      <VBtn color="secondary">Secondary</VBtn>      <VBtn color="primary">Primary</VBtn>    </div>  </section></template>

Sample 02

Code
<template>  <section class="flex justify-between flex-wrap border-t border-gray-200 pt-6">    <div class="flex">      <VBtn text flush noRing class="!text-gray-600">Learn more</VBtn>    </div>    <div class="flex gap-3 mt-4 md:mt-0">      <VBtn text flush noRing>Tertiary</VBtn>      <VBtn color="secondary">Secondary</VBtn>      <VBtn color="primary">Primary</VBtn>    </div>  </section></template>

Sample 03

Code
<template>  <section class="flex justify-between flex-wrap border-t border-gray-200 p-4 lg:py-5 lg:px-6">    <div class="flex gap-3 md:gap-5">      <VBtnGroup>        <VBtn class="!hidden lg:!flex">12 months</VBtn>        <VBtn class="lg:!hidden">12m</VBtn>        <VBtn class="!hidden lg:!flex">30 days</VBtn>        <VBtn class="lg:!hidden">30d</VBtn>        <VBtn class="!hidden lg:!flex">7 days</VBtn>        <VBtn class="lg:!hidden">7d</VBtn>        <VBtn prefixIcon="ri:add-fill" class="!hidden lg:!flex">Custom</VBtn>        <VBtn prefixIcon="ri:add-fill" class="lg:!hidden"></VBtn>      </VBtnGroup>      <VBtn text flush noRing class="!text-gray-600">Learn more</VBtn>    </div>    <div class="flex gap-3 mt-4 md:mt-0">      <VBtn text flush noRing>Tertiary</VBtn>      <VBtn color="secondary">Secondary</VBtn>      <VBtn color="primary">Primary</VBtn>    </div>  </section></template>

Sample 04

Code
<template>  <section class="flex justify-between flex-wrap border-t border-gray-200 px-4 py-3 lg:px-6 lg:py-5">    <div class="flex">      <VBtn text flush noRing class="!text-gray-600">Learn more</VBtn>    </div>    <div class="flex gap-3 mt-4 md:mt-0">      <VBtn text flush noRing>Tertiary</VBtn>      <VBtn color="secondary">Secondary</VBtn>      <VBtn color="primary">Primary</VBtn>    </div>  </section></template>