File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,17 @@ export const info = style([
3838 } ,
3939] ) ;
4040
41+ export const onlyDesktopLink = style (
42+ responsiveStyle ( {
43+ mobile : {
44+ display : 'none' ,
45+ } ,
46+ desktop : {
47+ display : 'inline-flex' ,
48+ } ,
49+ } ) ,
50+ ) ;
51+
4152export const link = style ( {
4253 color : themeVars . dynamicColors . descriptionTextColor ,
4354
Original file line number Diff line number Diff line change 11import { HStack , Link , Text } from '@codeimage/ui' ;
2+ import { onlyDesktopLink } from '~/components/Footer/Footer.css' ;
23import * as styles from '~/components/Footer/Footer.css' ;
34
45export default function Footer ( ) {
@@ -20,6 +21,15 @@ export default function Footer() {
2021 </ div >
2122
2223 < HStack spacing = { '8' } >
24+ < Link
25+ class = { `${ styles . link } ${ styles . onlyDesktopLink } ` }
26+ underline = { true }
27+ href = {
28+ 'https://github.com/riccardoperra/better-comments-for-github'
29+ }
30+ title = "Better Comments for GitHub"
31+ children = { 'GitHub' }
32+ />
2333 < Link
2434 class = { styles . link }
2535 underline = { true }
You can’t perform that action at this time.
0 commit comments