diff --git a/src/components/topbar-edit-modal/topbar-edit-modal.module.css b/src/components/topbar-edit-modal/topbar-edit-modal.module.css index e83538c5..078c1847 100644 --- a/src/components/topbar-edit-modal/topbar-edit-modal.module.css +++ b/src/components/topbar-edit-modal/topbar-edit-modal.module.css @@ -138,13 +138,20 @@ .editSubscriptionsLink { font-size: var(--body-font-size); - color: var(--link-color, #0000ee); - text-decoration: underline; + color: var(--post-link-text-color); + text-decoration: var(--post-content-link-text-decoration); cursor: pointer; } +.editSubscriptionsWrapper { + display: inline-flex; + align-items: center; + gap: 0; +} + .editSubscriptionsLink:hover { - color: var(--link-hover-color, #551a8b); + color: var(--post-link-text-color-hover); + text-decoration: var(--post-content-link-text-decoration-hover); } .topbarEditFooter { diff --git a/src/components/topbar-edit-modal/topbar-edit-modal.tsx b/src/components/topbar-edit-modal/topbar-edit-modal.tsx index b46940d3..c1814793 100644 --- a/src/components/topbar-edit-modal/topbar-edit-modal.tsx +++ b/src/components/topbar-edit-modal/topbar-edit-modal.tsx @@ -100,8 +100,9 @@ const TopbarEditModal = () => {