Skip to content

Commit 4e1b8f2

Browse files
committed
fix: qa사항 일부 반영
- textarea focus 시 보더 컬러 적용 - 힌트 이미지 최솟값 조정, 좌우패딩 추가 - 힌트 테이블 헤더 width 적용 안되었던 버그 픽스
1 parent df1713e commit 4e1b8f2

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

app/(shared)/(ThemeTextArea)/textArea.modules.sass

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@
1616

1717
&.filled
1818
background-color: $color-main
19-
&:focus, &:hover
19+
&:focus
2020
outline: none
21+
border: 1px solid $color-white
2122
background-color: $color-black
2223
cursor: text
24+
&:hover
25+
background-color: $color-black
2326
&.error
2427
border: 1px solid $color-semantic100
2528
cursor: text

app/admin/(components)/ThemeInfo/ThemeInfoHint.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ const ThemeInfoHint: React.FC<ThemeDrawerProps> = ({ handleHintCreate }) => {
9393
<div className="table-rate">
9494
<span>진행률</span>
9595
</div>
96-
<div className="table-hint">
96+
<div
97+
className={classNames("table-hint", {
98+
"drawer-open": drawer.isOpen,
99+
})}
100+
>
97101
<span>힌트 내용</span>
98102
</div>
99103
<div className="table-answer">

app/admin/(style)/themeInfo.modules.sass

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@
338338
visibility: hidden
339339
.drawer-image-box
340340
width: 100%
341-
min-height: 299px
342-
padding: 20px 0
341+
min-height: 229px
342+
padding: 20px
343343
border-radius: 8px
344344
background-color: $color-white5
345345
display: flex

0 commit comments

Comments
 (0)