Hello,
I created a new page and I would like to set a class in SCSS when the theme is dark.
How can I do it?
The code below doesn't work.
[data-theme="dark"] .myClass {
width: 100%;
}
[data-theme="light"] .myClass {
width: 50%;
}
Thank you for your help.
Hi,
[data-theme="dark"].myClass {
<div data-theme="dark" class="myClass">
</div>
[data-theme="dark"] .myClass {
<div data-theme="dark">
<div class="myClass"></div>
</div>