Skip to content

Commit

Permalink
docs(uxdot-best-practice): change Do/Don't heading space and icons
Browse files Browse the repository at this point in the history
  • Loading branch information
marionnegp committed Nov 5, 2024
1 parent 36d86e5 commit 0fdbfa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uxdot/uxdot-best-practice.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ span {
display: flex;
flex-direction: row;
align-items: center;
gap: var(--rh-space-sm);
gap: var(--rh-space-md);
}

#do span {
Expand Down
2 changes: 1 addition & 1 deletion uxdot/uxdot-best-practice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class UxdotBestPractice extends LitElement {

render() {
const { variant } = this;
const icon = variant === 'do' ? 'check-circle' : 'close-circle';
const icon = variant === 'do' ? 'check-circle-fill' : 'close-circle-fill';
const title = variant === 'do' ? 'Do' : 'Don\'t';
return html`
<figure id="container">
Expand Down

0 comments on commit 0fdbfa2

Please sign in to comment.