We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
How about having something like conditional css code depending upon variable
@has_theme_support: true; .awesome-class { width: 100px; height: 200px; margin: 0 auto; /* Adds theme support if @has_theme_support is 'true'; */ if( @has_theme_support ){ background: green; color: yellow; } }