From 2bbb82fd72d838619b6323cdff7d1c1c75cb6a2c Mon Sep 17 00:00:00 2001 From: karkir0003 Date: Mon, 25 Dec 2023 23:45:11 -0500 Subject: [PATCH] make the .fa-icon style only care about the font size --- styles/components/_list.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/styles/components/_list.scss b/styles/components/_list.scss index 9b582fb..fc8f74c 100644 --- a/styles/components/_list.scss +++ b/styles/components/_list.scss @@ -56,7 +56,7 @@ a { border-radius: 100%; box-shadow: inset 0 0 0 _size(border-width) _palette(border); - display: flex; + display: inline-flex; height: 2.25rem; line-height: 2.25rem; text-align: center; @@ -74,10 +74,10 @@ .fa-icon { font-size: 1rem; // Adjust the size of the icon as needed - display: inline-flex; // Use flex to center the icon - align-items: center; - justify-content: center; - height: 100%; + //display: inline-flex; // Use flex to center the icon + //align-items: center; + //justify-content: center; + //height: 100%; } } }