File tree 6 files changed +31
-2
lines changed
components/modals/AboutModal
6 files changed +31
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { Link } from '@fluentui/react/lib/Link'
16
16
import { ChangeLog } from './ChangeLog'
17
17
import { getContentStyles , getIconButtonStyles } from '~/styles/modal'
18
18
import environment from '~/environment'
19
+ import { SponsorsBlock } from './SponsorsBlock'
19
20
20
21
const TITLE_ID = 'AboutTitle'
21
22
@@ -92,10 +93,13 @@ export const AboutModal: React.FC<AboutModalProps> = (props: AboutModalProps) =>
92
93
</ div >
93
94
< div className = { modalStyles . footer } >
94
95
< div >
95
- { /* eslint-disable-next-line react/no-unescaped-entities */ }
96
- < h3 > What's New</ h3 >
96
+ < h3 > What's New</ h3 >
97
97
< ChangeLog />
98
98
</ div >
99
+ < div >
100
+ < h3 > Sponsors</ h3 >
101
+ < SponsorsBlock isDark = { theme . isInverted } />
102
+ </ div >
99
103
< Stack
100
104
horizontal
101
105
wrap
Original file line number Diff line number Diff line change
1
+ import React from 'react'
2
+ import { mergeStyles } from '@fluentui/react'
3
+ import gnolandLight from './img/gnoland-light.svg'
4
+ import gnolandDark from './img/gnoland-dark.svg'
5
+
6
+ interface Props {
7
+ isDark ?: boolean
8
+ }
9
+
10
+ const imgStyles = mergeStyles ( {
11
+ maxWidth : '100%' ,
12
+ maxHeight : '32px' ,
13
+ } )
14
+
15
+ export const SponsorsBlock : React . FC < Props > = ( { isDark } ) => (
16
+ < div >
17
+ < a href = "https://gno.land/?from=goplay-tools" target = "_blank" rel = "noreferrer" >
18
+ < img className = { imgStyles } src = { isDark ? gnolandDark : gnolandLight } alt = "gno.land" />
19
+ </ a >
20
+ </ div >
21
+ )
Original file line number Diff line number Diff line change
1
+ export * from './SponsorsBlock'
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export const LightTheme: IPartialTheme = {
5
5
}
6
6
7
7
export const DarkTheme : IPartialTheme = {
8
+ isInverted : true ,
8
9
palette : {
9
10
neutralLighterAlt : '#282828' ,
10
11
neutralLighter : '#313131' ,
You can’t perform that action at this time.
0 commit comments