Skip to content

Commit

Permalink
fork-commit-merge#622 : Fixed SASS Easy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mithilesh-patel committed Sep 24, 2023
1 parent 2dfc9a7 commit 9f579ce
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tasks/sass/easy/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

.container {
background-color: #3498db;
color: white;
text-align: center;
}/*# sourceMappingURL=styles.css.map */
1 change: 1 addition & 0 deletions tasks/sass/easy/styles.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions tasks/sass/easy/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ $primary-color: #3498db;
}

// TODO: Implement the Container class, do not change the code above
.container{
background-color: $primary-color;
color: white;
text-align: center;
}

0 comments on commit 9f579ce

Please sign in to comment.