I18n Better Experience

This commit is contained in:
Belen Curcio
2020-12-02 11:36:24 -03:00
parent bbcf63b892
commit c37ed3d418
4 changed files with 50 additions and 23 deletions

View File

@@ -6,6 +6,10 @@
@apply h-10 px-2 rounded-md border border-accents-2 flex items-center justify-center;
}
.button:hover {
@apply border-accents-4 shadow-sm;
}
.button:focus {
@apply outline-none;
}
@@ -18,6 +22,12 @@
}
}
.closeButton {
@screen md {
@apply hidden;
}
}
.item {
@apply flex cursor-pointer px-6 py-3 flex transition ease-in-out duration-150 text-primary leading-6 font-medium items-center;
text-transform: capitalize;
@@ -26,3 +36,7 @@
.item:hover {
@apply bg-accents-1;
}
.icon {
transform: rotate(180deg);
}