Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Safari에서 로드맵 퀴즈 progress가 표시되지 않는 오류를 수정 #1604

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const SubKeyword = (props: SubKeywordProps) => {
font-weight: bold;
cursor: pointer;
border-radius: 4px;
overflow: hidden;
overflow: visible;

&:hover {
background: ${hsl(toAdjustedLightness(toHue(KeywordColors.SUB_KEYWORD, hue), -0.1))};
Expand All @@ -48,9 +48,8 @@ const SubKeyword = (props: SubKeywordProps) => {
display: flex;
align-items: flex-start;
justify-content: flex-end;
position: absolute;
top: -5px;
right: -5px;
margin-right: -5px;
margin-top: -5px;
`}
>
<QuizProgress totalCount={keyword.totalQuizCount} doneCount={keyword.doneQuizCount} />
Expand All @@ -64,6 +63,8 @@ const SubKeyword = (props: SubKeywordProps) => {
: 'transparent'};
margin-right: auto;
box-shadow: inset 1px 0 1px 1px rgba(0, 0, 0, 0.05);
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
`}
/>
<div
Expand Down
Loading