Skip to content

Commit

Permalink
refactor : #53 ClasInformation spaceby
Browse files Browse the repository at this point in the history
  • Loading branch information
lsakee committed Dec 15, 2023
1 parent 0b8b90b commit da70aff
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,20 @@ fun SuwikiClassInformationCard(
modifier = Modifier
.fillMaxWidth()
.height(IntrinsicSize.Min),
horizontalArrangement = Arrangement.spacedBy(6.dp)
) {
Text(
text = className,
style = SuwikiTheme.typography.body6,
color = Black,
)
Spacer(modifier = Modifier.width(6.dp))
VerticalDivider(
color = GrayDA,
modifier = Modifier
.fillMaxHeight()
.width(1.dp)
.padding(vertical = 3.dp),
)
Spacer(modifier = Modifier.width(6.dp))
Text(
text = professor,
style = SuwikiTheme.typography.body6,
Expand Down

0 comments on commit da70aff

Please sign in to comment.