Skip to content

Commit

Permalink
chore: use uk-text-muted instead of text-undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Jan 15, 2024
1 parent e6b1914 commit 23ace0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions ember/app/styles/components/_text.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
.text-undefined {
@extend .uk-text-muted;
}

.uk-link-text:hover {
color: color-mix(in oklab, currentcolor 85%, black) !important;
}
Expand All @@ -12,5 +8,5 @@
justify-content: center;
margin-top: 1rem;

@extend .text-undefined;
}
@extend .uk-text-muted;
}
2 changes: 1 addition & 1 deletion ember/app/utils/status-to-class.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export default function (status) {
};
return colorMappings[status]
? `uk-text-${colorMappings[status]}`
: 'text-undefined';
: 'uk-text-muted';
}

0 comments on commit 23ace0a

Please sign in to comment.