1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-18 10:51:21 +02:00

feat(admin-plugin): update styles for buttons #211

This commit is contained in:
Awilum
2020-02-02 12:40:16 +03:00
parent 60c6545652
commit 809315538f

View File

@@ -10,18 +10,18 @@
.button
{
@apply px-4 py-2 border border-black text-white inline-block w-auto bg-black;
@apply px-4 py-2 border-1 border-solid border-dark text-white inline-block w-auto bg-dark;
}
.button--white
{
@apply bg-white text-black;
@apply bg-white text-dark;
}
.button:hover,
.button--white:hover
{
@apply border-gray-900 bg-gray-900 text-white;
@apply border-black bg-black text-white;
}
.button-group