Skip to content

Commit

Permalink
feat(sifrr-progress-round): add dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
aadityataparia committed Apr 26, 2019
1 parent 6c6c42c commit a6989f5
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion dist/sifrrelements.js

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

2 changes: 1 addition & 1 deletion dist/sifrrelements.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sifrrelements.module.js

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

2 changes: 1 addition & 1 deletion elements/sifrr-progress-round/dist/sifrrprogressround.js

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

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

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

4 changes: 2 additions & 2 deletions elements/sifrr-progress-round/src/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@

.bar {
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
border: 2px solid #ffffff;
border: 2px solid ${this.hasAttribute('dark') ? '#000000' : '#ffffff'};
}

.circle.over50 .f50-bar {
clip-path: polygon(50% 0, 100% 0%, 100% 100%, 50% 100%);
border: 2px solid #ffffff;
border: 2px solid ${this.hasAttribute('dark') ? '#000000' : '#ffffff'};
box-sizing: border-box;
}

Expand Down

0 comments on commit a6989f5

Please sign in to comment.