Skip to content

Commit

Permalink
add background-repeat: no repeat (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
katiehartrick committed Mar 10, 2021
1 parent 0d2d781 commit 91bb885
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions evergreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
* ========================================================================== */

/**
* Add border box sizing in all browsers (opinionated).
* 1. Add border box sizing in all browsers (opinionated).
* 2. Backgrounds do not repeat by default (opinionated).
*/

*,
::before,
::after {
box-sizing: border-box;
box-sizing: border-box; /* 1 */
background-repeat: no-repeat; /* 2 */
}

/**
Expand Down
6 changes: 4 additions & 2 deletions sanitize.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
* ========================================================================== */

/**
* Add border box sizing in all browsers (opinionated).
* 1. Add border box sizing in all browsers (opinionated).
* 2. Backgrounds do not repeat by default (opinionated).
*/

*,
::before,
::after {
box-sizing: border-box;
box-sizing: border-box; /* 1 */
background-repeat: no-repeat; /* 2 */
}

/**
Expand Down

0 comments on commit 91bb885

Please sign in to comment.