Replace the cloud tab icon with the non-sharp version (#381)

This commit is contained in:
Evan Simkowitz 2024-03-05 13:19:33 -08:00 committed by GitHub
parent b54cad6304
commit 01dc6144ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,8 @@ class TabIcon extends React.Component<{ icon: string; color: string }> {
let iconClass = "";
if (icon === "default" || icon === "square") {
iconClass = "fa-solid fa-square fa-fw";
} else if (icon === "cloud") {
iconClass = "fa-solid fa-cloud fa-fw";
} else {
iconClass = `fa-sharp fa-solid fa-${icon} fa-fw`;
}

View File

@ -106,7 +106,6 @@
}
&.is-active {
border-top: none;
opacity: 1;
font-weight: var(--screentabs-selected-font-weight);
border-top: 2px solid var(--tab-color);