diff --git a/src/lib/components/modals/theme-settings-modal/ThemeSettingsModalActionButtons.tsx b/src/lib/components/modals/theme-settings-modal/ThemeSettingsModalActionButtons.tsx
index 8725d71..884c93d 100644
--- a/src/lib/components/modals/theme-settings-modal/ThemeSettingsModalActionButtons.tsx
+++ b/src/lib/components/modals/theme-settings-modal/ThemeSettingsModalActionButtons.tsx
@@ -48,12 +48,16 @@ export function ThemeSettingsModalActionButtons({
onClick={handleUpdate}
className="cl_squaredialogbutton flex gap-1"
>
-
+
Update
)}
- {isPinned ? : }
+ {isPinned ? (
+
+ ) : (
+
+ )}
-
+
);
diff --git a/src/modules/settings/theme/ThemeSettingsEntry.tsx b/src/modules/settings/theme/ThemeSettingsEntry.tsx
index 207a466..288f441 100644
--- a/src/modules/settings/theme/ThemeSettingsEntry.tsx
+++ b/src/modules/settings/theme/ThemeSettingsEntry.tsx
@@ -59,7 +59,11 @@ export function ThemeSettingsEntry({ theme }: { theme: Theme }) {
}
}}
>
- {isPinned ? : }
+ {isPinned ? (
+
+ ) : (
+
+ )}
);
}}
>
-
+
diff --git a/src/styles/styles.css b/src/styles/styles.css
index e685956..4745275 100644
--- a/src/styles/styles.css
+++ b/src/styles/styles.css
@@ -176,13 +176,13 @@ MARK: TitleView
@keyframes onboardingButton {
0% {
- transform: scale(1) !important;
+ transform: scale(1);
}
50% {
- transform: scale(1.1) !important;
+ transform: scale(1.1);
}
100% {
- transform: scale(1) !important;
+ transform: scale(1);
}
}
@@ -650,4 +650,8 @@ MARK: Settings Page
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
+}
+
+.cl_squarebutton_icontranslate {
+ transform: translateY(-2px) !important;
}
\ No newline at end of file