fix: properly color svg button

This commit is contained in:
Baptiste Grob
2021-02-02 16:12:02 +01:00
parent c084268f51
commit 1b34331e93
3 changed files with 18 additions and 13 deletions

View File

@@ -1,14 +1,15 @@
/* Generic UI controls that have yet to be extracted in Stylekit */
/* Generic UI controls that have yet to be extracted into Stylekit */
.sn-btn {
@extend .text-sm;
@extend .border-0;
@extend .bg-main;
@extend .cursor-pointer;
@extend .font-bold;
@extend .py-2;
@extend .px-3;
@extend .bg-main;
@extend .text-info-contrast;
@extend .border-0;
@extend .rounded;
@extend .cursor-pointer;
@extend .text-info-contrast;
@extend .text-sm;
@extend .hover\:brightness-130;
}