Skip to content

Commit

Permalink
Apply fixes from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Mills <[email protected]>
  • Loading branch information
FormularSumo and chrisdavidmills authored Jan 2, 2024
1 parent fd3c6ad commit 224f014
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/css/_colon_in-range/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ input:in-range {
}

input:out-of-range {
background-color: rgb(0 255 0 / 25%);
background-color: rgb(255 0 0 / 25%);
border: 2px solid red;
}

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/css/border-color/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ border-color: red;
border-color: red #f015ca;

/* top | left and right | bottom */
border-color: red rgb(240 30 50 70%) green;
border-color: red rgb(240 30 50 / 70%) green;

/* top | right | bottom | left */
border-color: red yellow green blue;
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/css/border-top-color/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The **`border-top-color`** CSS property sets the color of an element's top [bord
border-top-color: red;
border-top-color: #ffbb00;
border-top-color: rgb(255 0 0);
border-top-color: hsl(100deg 50% 25% / 75%;
border-top-color: hsl(100deg 50% 25% / 75%);
border-top-color: currentcolor;
border-top-color: transparent;

Expand Down

0 comments on commit 224f014

Please sign in to comment.