1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-24 05:43:10 +02:00

feat(admin-plugin): add dropdown styles #211

This commit is contained in:
Awilum
2020-01-22 22:45:54 +03:00
parent 5bf6ab97ef
commit 6a30999971
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
.dropdown-menu
{
@apply px-10 py-6 absolute hidden;
}
.dropdown-item
{
@apply block py-2 px-4 text-left;
}
.dropdown-divider
{
@apply border-gray-800 border-b border-t-0;
}
.dropdown-icon
{
@apply mr-2;
}

View File

@@ -6,6 +6,7 @@
@import 'content';
@import 'table';
@import 'form';
@import 'dropdown';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';