style: standardize HSL color syntax to comma-separated format
This commit is contained in:
@@ -46,11 +46,11 @@ $button-size: 80px;
|
|||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: 1px solid hsl(0 74% 10% / 50%);
|
border: 1px solid hsl(0, 74%, 10%, 0.5);
|
||||||
border-bottom-color: hsl(0 74% 80% / 10%);
|
border-bottom-color: hsl(0, 74%, 80%, 0.1);
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
background-image: linear-gradient(to bottom, hsl(0 74% 80%), hsl(0 74% 70%));
|
background-image: linear-gradient(to bottom, hsl(0, 74%, 80%), hsl(0, 74%, 70%));
|
||||||
box-shadow: inset 3px 3px 0.5rem hsl(0 74% 20%);
|
box-shadow: inset 3px 3px 0.5rem hsl(0, 74%, 20%);
|
||||||
font-size: 0.2rem;
|
font-size: 0.2rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
@@ -70,9 +70,9 @@ $button-size: 80px;
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.pressed {
|
&.pressed {
|
||||||
background-image: linear-gradient(to bottom, hsl(0 74% 80%), hsl(0 74% 70%));
|
background-image: linear-gradient(to bottom, hsl(0, 74%, 80%), hsl(0, 74%, 70%));
|
||||||
box-shadow: inset 3px 3px 0.5rem hsl(0 74% 20%);
|
box-shadow: inset 3px 3px 0.5rem hsl(0, 74%, 20%);
|
||||||
border: 9px solid hsl(0 74% 10% / 50%);
|
border: 9px solid hsl(0, 74%, 10%, 0.5);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user