Skip to content
Snippets Groups Projects
Commit 8041e4d9 authored by xaralis's avatar xaralis
Browse files

Add super buttons

parent 72a347c6
No related branches found
No related tags found
No related merge requests found
Pipeline #729 passed
{{> atoms-super-button(classes: "bg-grey-125") }}
{{> atoms-super-button(classes: "bg-black text-white") }}
{{> atoms-super-button(classes: "bg-brands-facebook text-white") }}
{{> atoms-super-button(classes: "bg-grey-125 hover:bg-black hover:text-white") }}
<a href="#" class="super-button {{ classes }}">
<span class="super-button__body">{{ cta }}</span>
<i class="super-button__icon {{ icon }}"></i>
</a>
......@@ -52,6 +52,11 @@
<div class="text-center pt-4">
{{> atoms-icon-button(cta: "Zobrazit vše", classes: "text-xl btn--black btn--hoveractive", icon: "fas fa-chevron-right") }}
</div>
<div class="flex space-x-4 pt-8">
{{> atoms-super-button(cta: "Povolební strategie", icon: "fa fa-chess", classes: "bg-grey-125 hover:bg-black hover:text-white w-full") }}
{{> atoms-super-button(cta: "Financování kampaně", icon: "fa fa-calculator", classes: "bg-black text-white hover:bg-grey-125 hover:text-black w-full") }}
</div>
</div>
......
.super-button {
@apply inline-flex font-alt text-4xl py-4 px-3 transition duration-200;
&:hover {
@apply no-underline;
}
}
.super-button__body {
@apply flex-grow;
}
.super-button__icon {
@apply ml-4;
}
......@@ -24,6 +24,7 @@
@import "./atoms/heading.pcss";
@import "./atoms/paragraph.pcss";
@import "./atoms/social-icon.pcss";
@import "./atoms/super-button.pcss";
@import "./molecules/article-card.pcss";
@import "./molecules/badge.pcss";
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment