import styled, { css } from 'styled-components/macro' import { isMobileDevice } from 'config/userAgent' import { Wrapper } from '../TimeTooltip/styled' export const ProgressBarList = styled.div` flex-grow: 1; height: 4px; position: relative; background-color: rgba(255, 255, 255, 0.3); cursor: pointer; ${isMobileDevice ? css` height: 6px; margin: 0 15px 12px; ` : ''} ` export const ScrubberContainer = styled.div` ${isMobileDevice ? css` position: relative; margin: 0 7px; ` : ''} ` export const Scrubber = styled.div` border: none; outline: none; position: absolute; top: 0; transform: translate(-50%, -38%); z-index: 3; width: 18px; height: 18px; background-color: #CC0000; border-radius: 50%; cursor: pointer; user-select: none; -webkit-user-select: none; :hover ${Wrapper} { visibility: visible; } ${isMobileDevice ? css` width: 27px; height: 27px; transform: translate(-50%, -65%); ` : ''} `