-
Is it possible to set gradient color to header? I try to do it through :root > * {
--md-primary-fg-color: linear-gradient(135deg, #FF007B 0%, #EE82EE 50%, #20F3FA 100%);
} |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Jul 13, 2022
Replies: 2 comments
-
For what I know, OpenFaaS uses a gradient color for its header. I recommend checking out their custom CSS 😊 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chabErch
-
.md-header {
background: linear-gradient(45deg, rgb(53, 112, 227) 0%, rgb(53, 112, 227) 24%, rgb(42, 125, 227) 53%, rgb(27, 141, 226) 78%, rgb(8, 162, 225) 100%);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For what I know, OpenFaaS uses a gradient color for its header. I recommend checking out their custom CSS 😊