0

I have been struggling with how to use --rotate value from this CSS code inside my Angular SCSS code

CodePen: https://codepen.io/gayane-gasparyan/pen/jOmaBQK

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

.card::before {
  content: "";
  width: 104%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(
    var(--rotate)
    , #5ddcff, #3c67e3 43%, #4e00c2);
    position: absolute;
    z-index: -1;
    top: -1%;
    left: -2%;
    animation: spin 2.5s linear infinite;
}

I have tried this answer but not working.... https://stackoverflow.com/a/70672476/4591364

may I get some help, please?

solimanware
  • 2,952
  • 4
  • 20
  • 40

0 Answers0