You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Nav.styles.ts 220B

12345678
  1. import styled from 'styled-components';
  2. import { Toolbar as MatToolbar } from '@material-ui/core';
  3. export const Toolbar = styled(MatToolbar)`
  4. &&& {
  5. display: flex;
  6. justify-content: space-between;
  7. }
  8. ` as typeof MatToolbar;