mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
import styled from '@emotion/styled';
|
|
import { rgba } from '~/lib/color';
|
|
|
|
const TabPanel = styled.div(({ theme }) => ({
|
|
zIndex: 1,
|
|
position: 'relative',
|
|
border: `1px solid ${rgba(theme.colors.primary, 0.25)}`,
|
|
padding: '20px',
|
|
marginTop: '-1px',
|
|
}));
|
|
|
|
export default TabPanel;
|