forked from crowetic/commerce
* Remove duplicated css rules. (#185) * Fix typo in the Marquee component (#176) Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> * Remove duplicated css rules. Fix invalid JSX props. Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> * Fix the body scroll when the sidebar is open (#184) * Fix typo in the Marquee component (#176) Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> * Fix the body scroll when the sidebar is open Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> * Remove duplicate class in the I18nWidget comp (#183) * Fix typo in the Marquee component (#176) Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> * Remove duplicate class name in the I18nWidget comp This PR removes a duplicate class name in the I18nWidget component. Co-authored-by: Hugo Lopes <hugo.rodrigues.lopes@gmail.com> Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> * add horizontal margin to pages when mobile screen (#180) * Add cart item options like color and size (#177) Co-authored-by: hlopes <hugo.lopes@present-technologies.com> * Changes Co-authored-by: Hugo Lopes <hugo.rodrigues.lopes@gmail.com> Co-authored-by: Hugo Lopes <hugo.lopes@present-technologies.com> Co-authored-by: Jamie Isaksen <jamie@jamie.no> Co-authored-by: Vinicius Zucatti <51221635+vczb@users.noreply.github.com>
43 lines
731 B
CSS
43 lines
731 B
CSS
.root {
|
|
@apply relative;
|
|
}
|
|
|
|
.button {
|
|
@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;
|
|
}
|
|
|
|
.dropdownMenu {
|
|
@apply fixed right-0 top-12 mt-2 origin-top-right outline-none bg-primary z-40 w-full h-full;
|
|
|
|
@screen lg {
|
|
@apply absolute border border-accents-1 shadow-lg w-56 h-auto;
|
|
}
|
|
}
|
|
|
|
.closeButton {
|
|
@screen md {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
|
|
.item {
|
|
@apply flex cursor-pointer px-6 py-3 transition ease-in-out duration-150 text-primary leading-6 font-medium items-center;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.item:hover {
|
|
@apply bg-accents-1;
|
|
}
|
|
|
|
.icon {
|
|
transform: rotate(180deg);
|
|
}
|