Skip to content

Commit

Permalink
fix: 텍스트가 닫기 아이콘을 가리는 현상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinukeu committed Dec 4, 2023
1 parent 912cfb4 commit 8fbaea0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.wrapContentSize
import androidx.compose.foundation.text.BasicTextField
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Text
Expand Down Expand Up @@ -88,7 +87,7 @@ fun SuwikiTextFieldRegular(
verticalAlignment = Alignment.CenterVertically,
) {
Box(
modifier = Modifier.wrapContentSize(),
modifier = Modifier.weight(1f),
contentAlignment = Alignment.CenterStart,
) {
innerText()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.wrapContentSize
import androidx.compose.foundation.text.BasicTextField
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Text
Expand Down Expand Up @@ -72,7 +71,7 @@ fun SuwikiTextFieldSmall(
verticalAlignment = Alignment.CenterVertically,
) {
Box(
modifier = Modifier.wrapContentSize(),
modifier = Modifier.weight(1f),
contentAlignment = Alignment.CenterStart,
) {
innerText()
Expand Down

0 comments on commit 8fbaea0

Please sign in to comment.