fix list style
Seto Elkahfi committed
Nov 1, 2020 at 17:37 UTC
7aaef3be8971aae9dcc6bf9ac4b8d67fb0f2992d
1 file changed
+5
-1
src/components/LanguageLinks.tsx
+5
-1
@@ -5,6 +5,10 @@ const imgFlag = {
5
height: 11
6
}
7
8
+const listStyle = {
9
+ listStyle: 'none'
10
+}
11
+
12
type LinkProps = {
13
link: string
14
icon: string
@@ -71,7 +75,7 @@ class LanguageLinks extends Component {
75
76
return(
77
<div>
74
- <ul>
78
+ <ul style={listStyle}>
79
{languageList}
80
</ul>
81
</div>