File size: 293 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import styled from 'styled-components';
import { FlexRow } from '../globals';

export const ScrollableFlexRow = styled(FlexRow)`
  overflow-x: scroll;
  flex-wrap: nowrap;
  background: transparent;
  cursor: pointer;
  cursor: hand;
  cursor: grab;

  &:active {
    cursor: grabbing;
  }
`;