From eb611b2c41b19a3c04b281a186dbb20f37a8b12b Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 14 Mar 2021 09:33:57 -0700 Subject: [PATCH 1/2] Fix icons sometimes cut off in certain browsers --- .../document-card-large/document-card-large.component.scss | 5 +++-- .../document-card-small/document-card-small.component.scss | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss index c3a358a2b..b60240c70 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss @@ -51,8 +51,9 @@ } .metadata-icon { - width: 0.8rem; - height: 0.8rem; + width: 1.0rem; + height: 1.0rem; + padding: 0.05rem; } .search-score { diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 2daa97337..4997682a4 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -53,8 +53,9 @@ } .metadata-icon { - width: 0.8rem; - height: 0.8rem; + width: 1.0rem; + height: 1.0rem; + padding: 0.05rem; } } From 30bf7418f56e09a92a77f3223bd2c72159e2f9fc Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 14 Mar 2021 09:35:53 -0700 Subject: [PATCH 2/2] Dont change size overall --- .../document-card-large/document-card-large.component.scss | 4 ++-- .../document-card-small/document-card-small.component.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss index b60240c70..9507ab42a 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss @@ -51,8 +51,8 @@ } .metadata-icon { - width: 1.0rem; - height: 1.0rem; + width: 0.9rem; + height: 0.9rem; padding: 0.05rem; } diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 4997682a4..943df03b9 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -53,8 +53,8 @@ } .metadata-icon { - width: 1.0rem; - height: 1.0rem; + width: 0.9rem; + height: 0.9rem; padding: 0.05rem; } }