I'm using firefox 85 on ubuntu. I'm not sure what's happening I can't seem to get linear-gradient to show up! CanIUse says it's fine and I've combed through stackoverflow and other websites and none of the variations work. I even simplified it to :
background: linear-gradient(to top, red, yellow);
I think this issue could be local but I have no idea where how to fix it. Please help!
my code:
body {
position: absolute;
width: 100%;
height: 100%;
display: grid;
grid-template: repeat(25, 1fr) / 1fr 3fr;
background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, rgba(135, 129, 129, 0) 0%, #878181 100%);
}