Skip to content
Snippets Groups Projects
styled.tsx 444 B
Newer Older
  • Learn to ignore specific revisions
  • import { Button, ListItem, Toolbar } from '@material-ui/core'
    import styled from 'styled-components'
    
    export const ToolBarContainer = styled(Toolbar)`
      display: flex;
      justify-content: space-between;
    `
    
    export const ViewButton = styled(Button)`
      margin-right: 8px;
    `
    
    export const ViewButtonGroup = styled.div`
      display: flex;
      flex-direction: row;
    `
    
    export const SlideListItem = styled(ListItem)`
      text-align: center;
      height: 60px;
    `