13 lines
297 B
React
13 lines
297 B
React
|
import styled from "styled-components";
|
||
|
import { color } from "../../../../style/varibles";
|
||
|
|
||
|
export const TicketTabsStyled = styled.ul`
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
border-bottom: 1px solid ${color.gradient.border};
|
||
|
margin-bottom: 1rem;
|
||
|
margin-left: 0;
|
||
|
margin-right: 0;
|
||
|
`;
|
||
|
|