File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ const HomePage = () => {
68
68
< NewsListItem news = { n } fontSize = "xl" useLink = { config ?. components . news . showDetails } key = { n . title + n . timestamp } />
69
69
) ) }
70
70
</ Grid >
71
- < LinkButton mt = { 5 } href = { AbsolutePaths . NEWS } >
71
+ < LinkButton colorScheme = "brand" mt = { 5 } href = { AbsolutePaths . NEWS } >
72
72
Összes hír
73
73
</ LinkButton >
74
74
</ >
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import Markdown from '../../../common-components/Markdown'
5
5
import { getCdnUrl , stringifyTimeStamp } from '../../../util/core-functions.util'
6
6
import { AbsolutePaths } from '../../../util/paths'
7
7
import { NewsArticleView } from '../../../util/views/news.view'
8
+ import { FaArrowLeft } from 'react-icons/fa'
8
9
9
10
interface NewsProps {
10
11
news : NewsArticleView
@@ -32,7 +33,9 @@ const News = ({ news }: NewsProps) => {
32
33
) }
33
34
< Markdown text = { news . content } />
34
35
< Link to = { AbsolutePaths . NEWS } >
35
- < Button mt = { 4 } > Vissza a hírekhez</ Button >
36
+ < Button leftIcon = { < FaArrowLeft /> } colorScheme = "brand" mt = { 4 } >
37
+ Vissza a hírekhez
38
+ </ Button >
36
39
</ Link >
37
40
</ >
38
41
)
You can’t perform that action at this time.
0 commit comments