- Issue created by @svendecabooter
- π«π·France G4MBINI BΓ¨gles
Hello @svendecabooter ,
Can you have a look at that: https://www.drupal.org/forum/support/theme-development/2024-03-01/css-lo... β ?
I have an element that needs to be hidden on smaller screens, and shown on larger ones.
So I have set it up with the following classes:
<div class="hidden lg:block">Show this only on large screens.</div>
The file `css/components/hidden.module.css` in Drupal core's system/base library also contains a definition for .hidden classes, and seems to take precedence over the DaisyUI / Tailwind logic.
The result is: my block is not shown on larger screens, even though that is desired.
Override the hidden.module.css logic, to avoid this behaviour for .hidden classes. Other functionalities provided by this CSS file should remain intact.
Active
5.0
Code
Hello @svendecabooter ,
Can you have a look at that: https://www.drupal.org/forum/support/theme-development/2024-03-01/css-lo... β ?