Skip to content

Commit

Permalink
chore: progress 기본 스타일을 지정
Browse files Browse the repository at this point in the history
  • Loading branch information
saejinpark committed Aug 14, 2023
1 parent 94dc462 commit 1ad784c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions frontend/src/style/Global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@ const GlobalStyle = createGlobalStyle`
background: ${({ theme }) => theme.color.neutral.surface.default};
}
progress {
appearance: none;
-webkit-appearance: none;
border: none;
color: #6b6b6b;
height: 8px;
width: 100%;
}
::-webkit-progress-bar {
background-color: #EFF0F6;
border-radius: 4px;
box-shadow: none;
}
::-webkit-progress-value {
background-color: #007AFF;
border-radius: 4px;
}
.blind {
width: 1px;
height: 1px;
Expand Down

0 comments on commit 1ad784c

Please sign in to comment.