Skip to content
Snippets Groups Projects
styled.tsx 730 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;
    
    Albin Henriksson's avatar
    Albin Henriksson committed
      padding-left: 0;
    
    `
    
    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;
    `
    
    
    export const PresentationEditorContainer = styled.div`
      height: 100%;
    `
    
    
    export const CenteredSpinnerContainer = styled.div`
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    `
    
    Albin Henriksson's avatar
    Albin Henriksson committed
    
    export const HomeIcon = styled.img`
      height: 64px;
    `