diff options
author | Megan Pearson <megan.e.pearson@gmail.com> | 2018-10-19 21:36:38 +0800 |
---|---|---|
committer | Megan Pearson <megan.e.pearson@gmail.com> | 2018-10-19 21:36:38 +0800 |
commit | 736e1717fa4e59594e76694f7f6cc9dd0b45f1a9 (patch) | |
tree | ac9a1879b9bbdda2bbaa6ea54094888b7e7b9b07 /packages/dev-tools-pages/ts/globalStyles.tsx | |
parent | 45a24738b585d568c765b641a94e9bbf941a8fd7 (diff) | |
parent | d6ac1a4f782c55407760d4502325b6aa2cf3730c (diff) | |
download | dexon-sol-tools-736e1717fa4e59594e76694f7f6cc9dd0b45f1a9.tar.gz dexon-sol-tools-736e1717fa4e59594e76694f7f6cc9dd0b45f1a9.tar.zst dexon-sol-tools-736e1717fa4e59594e76694f7f6cc9dd0b45f1a9.zip |
Merge branch 'feature/responsive' into feature/variables
Diffstat (limited to 'packages/dev-tools-pages/ts/globalStyles.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/globalStyles.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/globalStyles.tsx b/packages/dev-tools-pages/ts/globalStyles.tsx index 1a2a1769a..e8ef630da 100644 --- a/packages/dev-tools-pages/ts/globalStyles.tsx +++ b/packages/dev-tools-pages/ts/globalStyles.tsx @@ -1,4 +1,5 @@ import { createGlobalStyle } from 'styled-components'; +import { media } from './variables'; import styledNormalize from 'styled-normalize'; import hljsStyles from 'highlight.js/styles/github-gist.css'; @@ -44,6 +45,9 @@ const BaseStyles = createGlobalStyle` font-weight: 300; font-size: 1rem; line-height: 1.8; + + ${media.small`font-size: 0.875rem;`}; + } a { |