templates/components/bubbles/centered_bubble.html.twig line 1

Open in your IDE?
  1. <div class="flex flex-col justify-center items-center gap-2 relative">
        <img class="absolute max-w-none lg:w-56" src="{{ asset('build/images/svg/' ~ svg) }}" alt="kpi bubble background">
        <div class="flex flex-col justify-center items-center gap-2 max-w-[12rem]">
            <h3 class="font-allerDisplay text-6xl text-white relative z-10">{{ title }}</h3>
            <p class="font-allerRegular text-xl text-white italic text-center relative z-10">{{ subtitle }}</p>
        </div>
    </div>