Skip to content

Commit

Permalink
Update sun.css sun opacities (#576)
Browse files Browse the repository at this point in the history
Sun rays were missing on CRA production builds
  • Loading branch information
kevinmonisit committed Sep 4, 2023
1 parent c87a74d commit ca637d2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/components/_Landing/assets/sun/sun.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
width: 300px;
height: 300px;
background-color: #c1e8da;
opacity: 30%;
opacity: 0.3;
border-radius: 50%;
transform: translate(-50%, -50%);
z-index: 1;
Expand All @@ -38,7 +38,7 @@
width: 500px;
height: 500px;
background-color: #c1e8da;
opacity: 15%;
opacity: 0.15;
border-radius: 50%;
transform: translate(-50%, -50%);
z-index: 1;
Expand All @@ -51,7 +51,7 @@
width: 700px;
height: 700px;
background-color: #c1e8da;
opacity: 10%;
opacity: 0.1;
border-radius: 50%;
transform: translate(-50%, -50%);
z-index: 1;
Expand All @@ -73,7 +73,7 @@
transform-origin: bottom left;
transform: rotate(deg);
background: linear-gradient(to top, transparent 50%, #c1e8da);
opacity: 20%;
opacity: 0.2;
}

#ray2 {
Expand All @@ -89,7 +89,7 @@
transform-origin: bottom left;
transform: rotate(deg);
background: linear-gradient(to top, transparent 60%, #c1e8da);
opacity: 20%;
opacity: 0.2;
}

#ray3 {
Expand All @@ -107,7 +107,7 @@
transform-origin: bottom left;
/* transform: rotate(deg); */
background: linear-gradient(to top, transparent 80%, #c1e8da);
opacity: 20%;
opacity: 0.2;
}


Expand All @@ -125,7 +125,7 @@
transform-origin: bottom left;
transform: rotate(-45deg);
background: linear-gradient(to top, transparent 50%, #c1e8da);
opacity: 14%;
opacity: 0.14;
}

#ray5 {
Expand All @@ -141,7 +141,7 @@
transform-origin: bottom left;
transform: rotate(-45deg);
background: linear-gradient(to top, transparent 50%, #c1e8da);
opacity: 20%;
opacity: 0.2;
}

#ray6 {
Expand All @@ -157,7 +157,7 @@
transform-origin: bottom left;
transform: rotate(-45deg);
background: linear-gradient(to top, transparent 50%, #c1e8da);
opacity: 20%;
opacity: 0.2;
}

/* Start of Third Ray Styling (and sub-rays) */
Expand All @@ -175,5 +175,5 @@
transform-origin: bottom left;
transform: rotate(40deg);
background: linear-gradient(to top, transparent 50%, #c1e8da);
opacity: 20%;
}
opacity: 0.2;
}

0 comments on commit ca637d2

Please sign in to comment.