2021-07-22 17:15:27 +00:00
|
|
|
import tw, { styled, theme } from 'twin.macro';
|
2020-07-04 22:40:41 +00:00
|
|
|
|
|
|
|
const SubNavigation = styled.div`
|
2020-09-13 17:02:25 +00:00
|
|
|
${tw`w-full bg-neutral-700 shadow overflow-x-auto`};
|
2020-12-04 04:10:41 +00:00
|
|
|
|
2020-07-04 22:40:41 +00:00
|
|
|
& > div {
|
|
|
|
${tw`flex items-center text-sm mx-auto px-2`};
|
|
|
|
max-width: 1200px;
|
2020-12-04 04:10:41 +00:00
|
|
|
|
2020-07-04 22:40:41 +00:00
|
|
|
& > a, & > div {
|
2020-12-26 17:50:09 +00:00
|
|
|
${tw`inline-block py-3 px-4 text-neutral-300 no-underline whitespace-nowrap transition-all duration-150`};
|
2020-12-04 04:10:41 +00:00
|
|
|
|
2020-07-04 22:40:41 +00:00
|
|
|
&:not(:first-of-type) {
|
|
|
|
${tw`ml-2`};
|
|
|
|
}
|
2020-12-04 04:10:41 +00:00
|
|
|
|
|
|
|
&:hover {
|
2020-07-04 22:40:41 +00:00
|
|
|
${tw`text-neutral-100`};
|
|
|
|
}
|
2020-12-04 04:10:41 +00:00
|
|
|
|
|
|
|
&:active, &.active {
|
|
|
|
${tw`text-neutral-100`};
|
2020-12-26 18:41:25 +00:00
|
|
|
box-shadow: inset 0 -2px ${theme`colors.cyan.700`.toString()};
|
2020-07-04 22:40:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default SubNavigation;
|