-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #635 from mike-n-jordan/setup_embedding_cake_app_i…
…n_landing Setup embedding cake app in landing
- Loading branch information
Showing
9 changed files
with
122 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
demos/appyx-navigation/web/src/jsMain/kotlin/com/bumble/appyx/navigation/WebTypography.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package com.bumble.appyx.navigation | ||
|
||
import androidx.compose.ui.text.font.FontFamily | ||
import androidx.compose.ui.unit.sp | ||
import com.bumble.appyx.navigation.ui.typography | ||
|
||
internal val webTypography = typography.copy( | ||
bodySmall = typography.bodySmall.copy( | ||
fontSize = 4.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
bodyMedium = typography.bodyMedium.copy( | ||
fontSize = 6.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
bodyLarge = typography.bodyLarge.copy( | ||
fontSize = 8.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
titleSmall = typography.titleSmall.copy( | ||
fontSize = 8.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
titleMedium = typography.titleMedium.copy( | ||
fontSize = 10.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
titleLarge = typography.titleLarge.copy( | ||
fontSize = 12.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
headlineSmall = typography.headlineSmall.copy( | ||
fontSize = 12.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
headlineMedium = typography.headlineMedium.copy( | ||
fontSize = 14.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
headlineLarge = typography.headlineLarge.copy( | ||
fontSize = 16.sp, | ||
fontFamily = FontFamily.SansSerif, | ||
), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters