File size: 730 Bytes
f23825d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import styled from "@emotion/styled"

export const LinearProgress = styled.progress`
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: ${({ theme }) => theme.secondaryBackgroundColor};

  &::-webkit-progress-bar {
    background: ${({ theme }) => theme.secondaryBackgroundColor};
    border-radius: 0.25rem;
    height: 0.5rem;
  }

  &::-webkit-progress-value {
    background: ${({ theme }) => theme.themeColor};
    border-radius: 0.25rem;
    height: 100%;
  }

  /* Firefox */
  border: none;
  border-radius: 0.25rem;
  height: 0.5rem;
  box-sizing: border-box;

  &::-moz-progress-bar {
    background: ${({ theme }) => theme.themeColor};
    border-radius: 0.25rem;
    height: 100%;
  }
`