Skip to content

Commit

Permalink
Fix build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoEllet committed Dec 21, 2023
1 parent 74d6526 commit 32a7d03
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package net.freshplatform.alrayada_landing_page.components

import androidx.compose.runtime.*
import com.varabyte.kobweb.compose.css.CSSLengthOrPercentageNumericValue
import net.freshplatform.alrayada_landing_page.core.services.localization.stringResource
import net.freshplatform.alrayada_landing_page.models.HomePageSections
import net.freshplatform.alrayada_landing_page.models.ThemeColors
Expand All @@ -17,7 +18,6 @@ import com.varabyte.kobweb.compose.ui.toAttrs
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import org.jetbrains.compose.web.css.CSSColorValue
import org.jetbrains.compose.web.css.CSSNumeric
import org.jetbrains.compose.web.css.ms
import org.jetbrains.compose.web.css.px
import org.jetbrains.compose.web.dom.Div
Expand Down Expand Up @@ -99,7 +99,7 @@ fun SectionTitle(
fun ParagraphText(
value: String,
modifier: Modifier = Modifier,
fontSize: CSSNumeric = 18.px,
fontSize: CSSLengthOrPercentageNumericValue = 18.px,
color: CSSColorValue = ThemeColors.Secondary.colorValue,
) {
if (value.isBlank()) {
Expand Down

0 comments on commit 32a7d03

Please sign in to comment.