Skip to content

Commit

Permalink
chore: soften selectors and hit target colors (#18709)
Browse files Browse the repository at this point in the history
Fixes: #18618
  • Loading branch information
pavelfeldman authored Nov 11, 2022
1 parent 1ec614b commit e42583f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/trace-viewer/src/snapshotRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function snapshotScript() {
if (pointX) {
const pointElement = document.createElement('x-pw-pointer');
pointElement.style.position = 'fixed';
pointElement.style.backgroundColor = 'red';
pointElement.style.backgroundColor = '#f44336';
pointElement.style.width = '20px';
pointElement.style.height = '20px';
pointElement.style.borderRadius = '10px';
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
--yellow: #ff9207;
--purple: #dc12ff;
--blue: #4dafff;
--orange: #ff7171;
--orange: #ff9800;
}
}

Expand Down

0 comments on commit e42583f

Please sign in to comment.