From aec645f8b698bdc78112f1e515154da65f74a74b Mon Sep 17 00:00:00 2001 From: ChandanChainani Date: Tue, 28 Dec 2021 03:08:19 +0530 Subject: [PATCH] Fix icon not appearing in print (Issue #120) (#223) If resume printed in pdf section icons does not appear inside circle. --- _sass/_print.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/_sass/_print.scss b/_sass/_print.scss index 3566cd311c5..8d9e7337e2f 100644 --- a/_sass/_print.scss +++ b/_sass/_print.scss @@ -14,13 +14,13 @@ .main-wrapper .time { float: right; color: black !important; - -webkit-print-color-adjust: exact; + -webkit-print-color-adjust: exact; } .sidebar-wrapper { position: static; float: right; width: 40%; - -webkit-print-color-adjust: exact; + -webkit-print-color-adjust: exact; } .remove-container.container-block { @@ -31,4 +31,10 @@ display: none; } -} \ No newline at end of file + .fa-inverse, + .fa-inverse:after, + .fa-inverse:before { + color: #ffffff !important; + } + +}