Path: blob/1.0-develop/resources/scripts/components/elements/SubNavigation.tsx
7461 views
import styled from 'styled-components/macro';1import tw, { theme } from 'twin.macro';23const SubNavigation = styled.div`4${tw`w-full bg-neutral-700 shadow overflow-x-auto`};56& > div {7${tw`flex items-center text-sm mx-auto px-2`};8max-width: 1200px;910& > a,11& > div {12${tw`inline-block py-3 px-4 text-neutral-300 no-underline whitespace-nowrap transition-all duration-150`};1314&:not(:first-of-type) {15${tw`ml-2`};16}1718&:hover {19${tw`text-neutral-100`};20}2122&:active,23&.active {24${tw`text-neutral-100`};25box-shadow: inset 0 -2px ${theme`colors.cyan.600`.toString()};26}27}28}29`;3031export default SubNavigation;323334