I am trying to register mobile specific stylesheet and desktop specific stylesheet.
But the discourse always takes the stylesheet which is registered last.
For example in plugin.rb file
# General change
register_asset "stylesheets/topiclist.scss"
# Desktop change
register_asset "stylesheets/desktop/topiclist.scss"
# Mobile change
register_asset "stylesheets/mobile/topiclist.scss"
Here the mobile stylesheet will override the previous two.
If I change the order, and keep the desktop stylesheet last, then it will override the previous ones.
So how do you make it responsive? Do we have to write the media queries ourselves, or placing the stylesheet in specific folders ( mobile, desktop etc) should make it work?