1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[CL-289] fix text decoration in CL button and item-content (#9219)

This commit is contained in:
Will Martin
2024-05-23 11:53:51 -04:00
committed by GitHub
parent 02c524dd5f
commit 4b3e63f7b7
2 changed files with 2 additions and 1 deletions

View File

@@ -69,6 +69,7 @@ export class ButtonComponent implements ButtonLikeAbstraction {
"tw-border",
"tw-border-solid",
"tw-text-center",
"tw-no-underline",
"hover:tw-no-underline",
"focus:tw-outline-none",
]

View File

@@ -8,7 +8,7 @@ import { ChangeDetectionStrategy, Component } from "@angular/core";
templateUrl: `item-content.component.html`,
host: {
class:
"fvw-target tw-outline-none tw-text-main hover:tw-text-main hover:tw-no-underline tw-text-base tw-py-2 tw-px-4 tw-bg-transparent tw-w-full tw-border-none tw-flex tw-gap-4 tw-items-center tw-justify-between",
"fvw-target tw-outline-none tw-text-main hover:tw-text-main tw-no-underline hover:tw-no-underline tw-text-base tw-py-2 tw-px-4 tw-bg-transparent tw-w-full tw-border-none tw-flex tw-gap-4 tw-items-center tw-justify-between",
},
changeDetection: ChangeDetectionStrategy.OnPush,
})