Skip to content

Commit

Permalink
1) AboutSection: add gridAutoRows to SkillsSimpleGrid
Browse files Browse the repository at this point in the history
  • Loading branch information
ItamiOMW committed Mar 11, 2024
1 parent 9b49d16 commit db8f2b5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import com.varabyte.kobweb.silk.components.text.SpanText
import com.varabyte.kobweb.silk.theme.breakpoint.rememberBreakpoint
import com.varabyte.kobweb.silk.theme.colors.palette.toPalette
import org.jetbrains.compose.web.css.cssRem
import org.jetbrains.compose.web.css.fr
import org.jetbrains.compose.web.css.percent
import org.jetbrains.compose.web.css.vh

Expand Down Expand Up @@ -81,7 +82,8 @@ fun AboutSection() {
modifier = Modifier
.gap(if (breakpoint >= Breakpoint.MD) 1.5.cssRem else 1.cssRem)
.fillMaxWidth()
.padding(top = 6.5.cssRem, left = 2.25.cssRem),
.padding(top = 6.5.cssRem, left = 2.25.cssRem)
.gridAutoRows { size(1.fr) },
numColumns = numColumns(base = 2, md = 5, lg = 5)
) {
Skill.entries.forEach { skill ->
Expand Down

0 comments on commit db8f2b5

Please sign in to comment.