How to avoid CSS merging problems?
Unanswered
Chilean jack mackerel posted this in #help-forum
Chilean jack mackerelOP
## So I have a Navbar, layout and two pages. Now I want the navbar to be
My navbar is placed in global layout component. The main styling for navbar is
position: relative in page1 and position: absolute in page2. ##My navbar is placed in global layout component. The main styling for navbar is
position: absolute but I want to change it only for page1 to be position: relative. Changing it in page's style file results that the navbar is position: relative on every page that has it. I found out that this is caused by CSS merging. I don't know if it's good idea to turn off it, or even if it's possible to turn off this css merging, but I don't really want to import the navbar for every page manually and change it's style in component itself. Any ideas?