Skip to content

Commit

Permalink
fix: text align 변경 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Aug 31, 2024
1 parent 302d9d9 commit 6f6286a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Text
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.easyhz.noffice.core.design_system.component.skeleton.Skeleton
Expand Down Expand Up @@ -46,7 +47,7 @@ internal fun LazyListScope.contentField(
}
}
) {
Text(text = content, style = SubBody14, lineHeight = (14 * 1.8).sp, color = Grey800)
Text(text = content, style = SubBody14, lineHeight = (14 * 1.8).sp, color = Grey800, textAlign = TextAlign.Start)
}
}
}
Expand Down

0 comments on commit 6f6286a

Please sign in to comment.