appbaseio/reactivesearch

View on GitHub
site/demos/technews/src/styles/Navbar.js

Summary

Maintainability
A
0 mins
Test Coverage
import styled from 'react-emotion';

import { flex, alignCenter } from './Flex';

const Navbar = styled.nav`
    background: coral;
    color: #fff;
    padding: 1rem;
    font-weight: bold;

    ${flex};
    ${alignCenter};
`;

export default Navbar;