Skip to content

Commit

Permalink
Merge pull request #613 from Turbo87/checkers
Browse files Browse the repository at this point in the history
Use checkerboard pattern for testing container background
  • Loading branch information
Turbo87 committed Dec 14, 2019
2 parents 041a699 + 8511ee5 commit 3fad087
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vendor/ember-qunit/test-container-styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
#ember-testing-container {
position: relative;
background: white;

background-color: #fff;
background-image:
linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee),
linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee);
background-position: 0 0, 10px 10px;
background-size: 20px 20px;

bottom: 0;
right: 0;
width: 640px;
Expand Down

0 comments on commit 3fad087

Please sign in to comment.