Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: UI for the new "Conencted" badge #1144

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/app/core/models/enum/enum.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,8 @@ export enum SizeOption {
export enum ThemeOption {
BRAND = 'brand',
LIGHT = 'light',
DARK = 'dark'
DARK = 'dark',
SUCCESS = 'success'
}

export enum QBDPreRequisiteState {
Expand Down
5 changes: 5 additions & 0 deletions src/app/shared/components/core/badge/badge.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
@apply tw-text-badge-dark-text-color;
}

.theme-success {
@apply tw-bg-bg-success-light tw-border tw-border-solid tw-border-border-success-light;
@apply tw-text-text-success;
}

.size-large {
@apply tw-min-w-24-px;
@apply tw-min-h-24-px;
Expand Down
Loading