I couldn't find any info on this, are media querie...
# react
h
I couldn't find any info on this, are media queries supported in kotlin-styled?
a
yes, they are
h
@andylamax is there any documentation or example you could point me to? Thanks! 😊
a
i do not have a link to documentation but you should try
Copy code
styledDiv {
 css{
  media("screen and (max-width: 600px)") {
   width=50.pct
  }
 }
}
👍 1
h
indeed, thanks a lot!