mirror of
https://github.com/strapi/strapi.git
synced 2025-10-27 08:02:56 +00:00
25 lines
346 B
JavaScript
25 lines
346 B
JavaScript
/**
|
|
*
|
|
* ModalNav
|
|
*
|
|
*/
|
|
|
|
import styled from 'styled-components';
|
|
|
|
const ModalNav = styled.div`
|
|
display: flex;
|
|
height: 3.8rem;
|
|
padding-top: 0.6rem;
|
|
color: #9ea7b8;
|
|
font-size: 1.2rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.7px;
|
|
text-transform: uppercase;
|
|
|
|
> div:last-child {
|
|
margin-left: 3rem;
|
|
}
|
|
`;
|
|
|
|
export default ModalNav;
|