Skip to content

Commit

Permalink
Fix width of overlay container on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
dellisd committed Aug 8, 2023
1 parent 84cea0b commit f5db7da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import org.jetbrains.compose.web.css.top
import org.jetbrains.compose.web.css.width

object AppStylesheet : StyleSheet() {
val SmallMediaQuery = mediaMaxWidth(600.px)

init {
"html, body, #root" style {
width(100.percent)
Expand All @@ -40,6 +42,4 @@ object AppStylesheet : StyleSheet() {
}
}
}

val SmallMediaQuery = mediaMaxWidth(600.px)
}

0 comments on commit f5db7da

Please sign in to comment.