I'm trying to add a transparent color to the fixed top navigation upon scroll using the following code to no avail:
.Header {
position: fixed !important;
top: 0;
left: 0;
right: 0;
bottom: 10;
z-index: 999;
}
/* Mobile */
.Mobile-bar {
background-color:transparent;
}
/* Desktop */
.Header {
background-color:transparent !important;
}
.Header{
transition: 0.2s;
color: #f6f6f6;
}
What am I doing wrong?
Thank you!