diff --git a/public/icons/logout.svg b/public/icons/logout.svg new file mode 100644 index 00000000..a28a25c8 --- /dev/null +++ b/public/icons/logout.svg @@ -0,0 +1,4 @@ + + + diff --git a/public/icons/profile.svg b/public/icons/profile.svg new file mode 100644 index 00000000..23c7e580 --- /dev/null +++ b/public/icons/profile.svg @@ -0,0 +1,4 @@ + + + diff --git a/src/components/Feed/ArticleCard/ArticleCard.module.scss b/src/components/Feed/ArticleCard/ArticleCard.module.scss index 336d82c8..d19865b1 100644 --- a/src/components/Feed/ArticleCard/ArticleCard.module.scss +++ b/src/components/Feed/ArticleCard/ArticleCard.module.scss @@ -603,6 +603,7 @@ .shoutCardDetailsItem { align-items: center; display: flex; + font-size: 1.4rem; margin-right: 1.2rem; white-space: nowrap; diff --git a/src/components/Feed/FeedArticlePopup/FeedArticlePopup.module.scss b/src/components/Feed/FeedArticlePopup/FeedArticlePopup.module.scss index 54b1df3a..d9141883 100644 --- a/src/components/Feed/FeedArticlePopup/FeedArticlePopup.module.scss +++ b/src/components/Feed/FeedArticlePopup/FeedArticlePopup.module.scss @@ -1,7 +1,4 @@ .feedArticlePopup { - box-shadow: none !important; - border: 1px solid rgb(0 0 0 / 15%); - border-radius: 1.6rem; padding: 0 !important; text-align: left; overflow: hidden; diff --git a/src/components/Nav/ProfilePopup.tsx b/src/components/Nav/ProfilePopup.tsx index ce645d6d..bdaa9f60 100644 --- a/src/components/Nav/ProfilePopup.tsx +++ b/src/components/Nav/ProfilePopup.tsx @@ -6,8 +6,10 @@ import { useLocalize } from '../../context/localize' import { useSession } from '../../context/session' import { router } from '../../stores/router' import { Popup } from '../_shared/Popup' +import { Icon } from '../_shared/Icon' import styles from '../_shared/Popup/Popup.module.scss' +import {clsx} from 'clsx'; type ProfilePopupProps = Omit @@ -19,27 +21,44 @@ export const ProfilePopup = (props: ProfilePopupProps) => {