Skip to content

Commit baf2ef2

Browse files
committed
show an orange rss icon if favicon not available
1 parent 99d298c commit baf2ef2

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/assets/App.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,9 @@ a {
272272
width: 18px;
273273
height: 18px;
274274
}
275-
275+
.blockHeaderIcon .rss {
276+
color:#ee802f;
277+
}
276278
.blockRow {
277279
scroll-snap-align: start;
278280
padding: 8px 16px;

src/features/cards/components/customRssCard/CardIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { BsRssFill } from 'react-icons/bs'
22

33
const CardIcon = (props: { url?: string }) => {
44
const { url } = props
5-
return url ? <img src={url} alt="" /> : <BsRssFill />
5+
return url ? <img src={url} alt="" /> : <BsRssFill className='rss' />
66
}
77

88
export default CardIcon

0 commit comments

Comments
 (0)