This commit is contained in:
okbel
2021-03-19 15:39:57 -03:00
parent b5ba5e76be
commit 4c0c7ebf10
8 changed files with 105 additions and 376 deletions

View File

@@ -1,7 +1,9 @@
.root {
@apply text-center p-6 bg-primary text-sm flex-row justify-center items-center font-medium fixed bottom-0 w-full z-30 transition-all duration-300 ease-out;
}
@screen md {
@screen md {
.root {
@apply flex text-left;
}
}

View File

@@ -16,14 +16,16 @@
.dropdownMenu {
@apply fixed right-0 top-12 mt-2 origin-top-right outline-none bg-primary z-40 w-full h-full;
}
@screen lg {
@screen lg {
.dropdownMenu {
@apply absolute border border-accents-1 shadow-lg w-56 h-auto;
}
}
.closeButton {
@screen md {
@screen md {
.closeButton {
@apply hidden;
}
}

View File

@@ -1,7 +1,9 @@
.dropdownMenu {
@apply fixed right-0 mt-2 origin-top-right outline-none bg-primary z-40 w-full h-full;
}
@screen lg {
@screen lg {
.dropdownMenu {
@apply absolute top-10 border border-accents-1 shadow-lg w-56 h-auto;
}
}