mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-27 18:14:54 +00:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import styled from 'styled-components';
|
|
import { ANTD_GRAY } from '../../constants';
|
|
|
|
export default styled.div`
|
|
display: flex;
|
|
position: relative;
|
|
z-index: 1;
|
|
justify-content: space-between;
|
|
height: 46px;
|
|
border-bottom: 1px solid ${ANTD_GRAY[4.5]};
|
|
padding: 7px 16px;
|
|
box-shadow: 0px 2px 6px 0px #0000000d;
|
|
`;
|