Created
January 12, 2021 11:36
-
-
Save scsskid/3522677c492d3d8c476b74896d05a1a4 to your computer and use it in GitHub Desktop.
[Colorize iOS Status Bar] #ios #pwa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body:before { | |
content: ''; | |
display: block; | |
position: fixed; | |
top: 0; | |
z-index: 7; | |
left: 0; | |
right: 0; | |
height: env(safe-area-inset-top); | |
width: 100%; | |
background: linear-gradient( | |
hsl(var(--hue-main) 5% 70%), | |
hsl(var(--hue-main) 18% 96%) 100% | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment