From fd5809611207423930c31784028810106484f81b Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Feb 2022 21:39:02 -0800 Subject: [PATCH] bs5: fix underline weirdness --- .../filter-editor/filter-editor.component.html | 5 ++--- src-ui/src/styles.scss | 11 +++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html index 1f467b616..94c694aeb 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html @@ -52,10 +52,9 @@
diff --git a/src-ui/src/styles.scss b/src-ui/src/styles.scss index 88f5b2665..e4e1b3fb9 100644 --- a/src-ui/src/styles.scss +++ b/src-ui/src/styles.scss @@ -116,3 +116,14 @@ body { .ngx-file-drop__drop-zone--over { background-color: $primaryFaded !important; } + +a.badge { + text-decoration: none; +} + +.btn-link { + text-decoration: none; + &:hover { + text-decoration: underline; + } +}