Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
293 Bytes
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;
}
`;