import { css } from '@emotion/react'; import { Theme } from '../../themes/default.js'; export interface StyleProps { main: boolean | undefined; } export const style = ({ theme, main }: StyleProps & { theme: Theme }) => css` display: flex; flex: 0 0 1; padding-left: 1px; background-color: ${theme.base01}; width: 100%; overflow: hidden; ${!main && ` border-top: 1px solid ${theme.base01}; border-bottom: 1px solid ${theme.base02}; `} > div { display: flex; align-items: flex-end; flex-wrap: nowrap; button { background-color: ${theme.base01}; color: ${theme.base05}; letter-spacing: 0.3px; min-height: 30px; padding: 2px 8px; margin-right: 1px; border: ${main ? '2' : '1'}px solid transparent; cursor: pointer; text-align: center; overflow: hidden; outline: 0; transition: all 0.5s; &:hover, &:focus { background-color: ${main ? theme.base02 : theme.base00}; text-shadow: ${theme.base01} 0 1px; } } > [data-selected] { ${main ? `border-bottom: 2px solid ${theme.base0D};` : ` background-color: ${theme.base00}; border: 1px solid ${theme.base02}; border-bottom: 1px solid ${theme.base00}; box-shadow: 0 1px ${theme.base00}; `} color: ${theme.base07}; } } > div:nth-child(2) { display: block; z-index: 10; button { display: block; background: ${theme.base00}; width: 100%; &:hover, &:focus { background-color: ${main ? theme.base02 : theme.base00}; text-shadow: ${theme.base01} 0 1px; } } } `;