We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99d298c commit baf2ef2Copy full SHA for baf2ef2
2 files changed
src/assets/App.css
@@ -272,7 +272,9 @@ a {
272
width: 18px;
273
height: 18px;
274
}
275
-
+.blockHeaderIcon .rss {
276
+ color:#ee802f;
277
+}
278
.blockRow {
279
scroll-snap-align: start;
280
padding: 8px 16px;
src/features/cards/components/customRssCard/CardIcon.tsx
@@ -2,7 +2,7 @@ import { BsRssFill } from 'react-icons/bs'
2
3
const CardIcon = (props: { url?: string }) => {
4
const { url } = props
5
- return url ? <img src={url} alt="" /> : <BsRssFill />
+ return url ? <img src={url} alt="" /> : <BsRssFill className='rss' />
6
7
8
export default CardIcon
0 commit comments