Hey!
I am trying to make a line that goes from one side of the screen to the other under the navbar or the tabs, I have a gradient I’d like to use. I’ve tried with border bottom but haven’t been able to achieve it.
Any suggestions? Thanks!
Hey!
I am trying to make a line that goes from one side of the screen to the other under the navbar or the tabs, I have a gradient I’d like to use. I’ve tried with border bottom but haven’t been able to achieve it.
Any suggestions? Thanks!
Something like this should work:
#navigator-toolbox::after{ height: 1px; background-image: linear-gradient(to right, blue, yellow, cyan, magenta, red); order: 1000; content: ""; display: flex !important; }
As always it works perfectly. Thanks a lot!