Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(*): Normalize CSS in themes & examples #422

Merged
merged 1 commit into from
Jun 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,18 @@ Squashy armchairs dirt on your nose brass scales crush the Sopophorous bean with

Half-giant jinxes peg-leg gillywater broken glasses large black dog Great Hall. Nearly-Headless Nick now string them together, and answer me this, which creature would you be unwilling to kiss? Poltergeist sticking charm, troll umbrella stand flying cars golden locket Lily Potter. Pumpkin juice Trevor wave your wand out glass orbs, a Grim knitted hats. Stan Shunpike doe patronus, suck his soul Muggle-Born large order of drills the trace. Bred in captivity fell through the veil, quaffle blue flame ickle diddykins Aragog. Yer a wizard, Harry Doxycide the woes of Mrs. Weasley Goblet of Fire.

## This is a secondary heading

Exume lumos protego leviosa. Aresto expecto engorgio engorgio leviosa legilimens stupefy incantartem mobilarbus accio funnunculus. Serpensortia locomotor incarcerous aguamenti colloportus. Totalus morsmordre stupefy charm- aresto me momentum incarcerous lacarnum locomotor. Revelio relashio veritaserum impedimenta expecto quietus. Legilimens crucio hover cruciatus alohomora tarantallegra petrificus petrificus charm mortis. Nox lumos crucio expecto aparecium lacarnum charm rictusempra pepperup.

---

Sectumsempra aresto exume reducio momentum tarantallegra patronum. Totalus amortentia momentum mortis quietus evanesco. Aparecium mobilicorpus aparecium petrificus engorgio evanesco aparecium. Incarcerous serpensortia petrificus conjunctivitis deletrius immobilus sonorous mortis episkey impedimenta. Immobilus lacarnum totalus protean. Funnunculus exume serpensortia inflamarae relashio alohomora locomotor inflamarae lumos. Skele-gro totalus.

## Another secondary heading

### Third heading level

Legilimens colloportus aparecium aresto aparecium leviosa unctuous inflamarae. Quietus mobilarbus incarcerous stupefy confundus leviosa. Quietus funnunculus leviosa evanesco babbling evanesco lumos expecto incarcerous mortis.

Reparo reparo alohomora vow. Lacarnum locomotor sonorus lumos incantato reducto imperius locomotor legilimens evanesco. Locomotor patronum stupefy lumos scourgify lacarnum. Portus charm inflamarae leviosa stupefy. Incarcerous totalus incantatem impedimenta morsmordre leviosa unction ennervate. Rictusempra aparecium incendio alohomora totalus quietus serpensortia protego.
Expand Down
4 changes: 4 additions & 0 deletions examples/specimens/src/components/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ const Layout = ({ children }) => {
color: #fff;
background-color: #3490dc;
}
html {
font-size: 16px;
-webkit-text-size-adjust: 100%;
}
body {
border: 0;
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion examples/specimens/src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ View the [**theme's README**](https://github.com/LekoArts/gatsby-themes/tree/mas

### Alert

Variants: `alerts.success`, `alerts.hint`, `alerts.warning`, `alerts.info`, `alerts.danger`,
Variants: `alerts.success`, `alerts.hint`, `alerts.warning`, `alerts.info`, `alerts.danger`

Available props:

Expand Down
6 changes: 5 additions & 1 deletion examples/status-dashboard/src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ const Index = ({
color: #fff;
background-color: #3490dc;
}
html {
-webkit-text-size-adjust: 100%;
}
body {
border: 0;
margin: 0;
Expand Down Expand Up @@ -81,6 +84,7 @@ const Index = ({
{siteDescription}
</p>
<Info />
<div css={css({ marginTop: `1rem` })} />
<Grid />
<footer
css={css({
Expand All @@ -93,7 +97,7 @@ const Index = ({
>
Copyright &copy; {new Date().getFullYear()}. All rights reserved.
<br />
<div css={css({ display: `flex`, justifyContent: `center`, alignItems: `center`, marginTop: `1.5rem` })}>
<div css={css({ display: `flex`, justifyContent: `center`, alignItems: `center`, marginTop: `1rem` })}>
<img width="30" height="30" src="https://img.lekoarts.de/gatsby/logo_w30.png" alt="LekoArts Logo" />
{` `}
<a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ const Layout = ({ children }) => (
*::after {
box-sizing: border-box;
}
html {
-webkit-text-size-adjust: 100%;
}
body {
border: 0;
margin: 0;
Expand Down
11 changes: 11 additions & 0 deletions themes/gatsby-theme-cara/src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ const Layout = ({ children, className }: LayoutProps) => (
},
html: {
fontSize: `18px`,
WebkitTextSizeAdjust: `100%`,
},
img: {
borderStyle: `none`,
},
pre: {
fontFamily: `monospace`,
fontSize: `1em`,
},
"[hidden]": {
display: `none`,
},
"::selection": {
backgroundColor: theme.colors.primary,
Expand Down
11 changes: 11 additions & 0 deletions themes/gatsby-theme-emilia/src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ const Layout = ({ children }: LayoutProps) => (
},
html: {
fontSize: `18px`,
WebkitTextSizeAdjust: `100%`,
},
img: {
borderStyle: `none`,
},
pre: {
fontFamily: `monospace`,
fontSize: `1em`,
},
"[hidden]": {
display: `none`,
},
"::selection": {
background: theme.colors.text,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ export default merge(tailwind, {
padding: 0,
boxSizing: `border-box`,
textRendering: `optimizeLegibility`,
WebkitFontSmoothing: `antialiased`,
MozOsxFontSmoothing: `grayscale`,
},
a: {
color: `primary`,
Expand Down
13 changes: 13 additions & 0 deletions themes/gatsby-theme-emma/src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ const Layout = ({ children, className }: LayoutProps) => {
"*": {
boxSizing: `inherit`,
},
html: {
WebkitTextSizeAdjust: `100%`,
},
img: {
borderStyle: `none`,
},
pre: {
fontFamily: `monospace`,
fontSize: `1em`,
},
"[hidden]": {
display: `none`,
},
"::selection": {
backgroundColor: theme.colors.text,
color: theme.colors.background,
Expand Down
2 changes: 2 additions & 0 deletions themes/gatsby-theme-emma/src/gatsby-plugin-theme-ui/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export default merge(tailwind, {
padding: 0,
boxSizing: `border-box`,
textRendering: `optimizeLegibility`,
WebkitFontSmoothing: `antialiased`,
MozOsxFontSmoothing: `grayscale`,
},
p: {
fontSize: [1, 2],
Expand Down
13 changes: 13 additions & 0 deletions themes/gatsby-theme-graphql-playground/src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ const Layout = ({ children, title }: LayoutProps) => (
"*": {
boxSizing: `inherit`,
},
html: {
WebkitTextSizeAdjust: `100%`,
},
img: {
borderStyle: `none`,
},
pre: {
fontFamily: `monospace`,
fontSize: `1em`,
},
"[hidden]": {
display: `none`,
},
a: {
transition: `all 0.3s ease-in-out`,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ const theme = merge(tailwind, {
padding: 0,
boxSizing: `border-box`,
textRendering: `optimizeLegibility`,
WebkitFontSmoothing: `antialiased`,
MozOsxFontSmoothing: `grayscale`,
},
pre: {
...nightOwl,
Expand Down
12 changes: 11 additions & 1 deletion themes/gatsby-theme-minimal-blog/src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@ const Layout = ({ children, className }: LayoutProps) => (
boxSizing: `inherit`,
},
html: {
"-webkit-text-size-adjust": `100%`,
WebkitTextSizeAdjust: `100%`,
},
img: {
borderStyle: `none`,
},
pre: {
fontFamily: `monospace`,
fontSize: `1em`,
},
"[hidden]": {
display: `none`,
},
"::selection": {
backgroundColor: theme.colors.text,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ const theme = merge(tailwind, {
padding: 0,
boxSizing: `border-box`,
textRendering: `optimizeLegibility`,
WebkitFontSmoothing: `antialiased`,
MozOsxFontSmoothing: `grayscale`,
},
p: {
fontSize: [1, 1, 2],
Expand Down Expand Up @@ -63,25 +65,27 @@ const theme = merge(tailwind, {
h1: {
variant: `text.heading`,
fontSize: [5, 6, 7],
mt: 2,
mt: 4,
},
h2: {
variant: `text.heading`,
fontSize: [4, 5, 6],
mt: 2,
mt: 4,
},
h3: {
variant: `text.heading`,
fontSize: [3, 4, 5],
mt: 3,
mt: 4,
},
h4: {
variant: `text.heading`,
fontSize: [2, 3, 4],
mt: 3,
},
h5: {
variant: `text.heading`,
fontSize: [1, 2, 3],
mt: 3,
},
h6: {
variant: `text.heading`,
Expand Down
9 changes: 5 additions & 4 deletions themes/gatsby-theme-minimal-blog/src/styles/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const code = {
backgroundColor: tint(`primary`, 0.7),
},
".prism-code": {
fontSize: 1,
fontSize: [1, 1, 2],
padding: 3,
webkitOverflowScrolling: `touch`,
backgroundColor: `transparent`,
Expand All @@ -30,14 +30,14 @@ const code = {
display: `inline-block`,
},
"p > code, li > code": {
bg: `rgb(1, 22, 39)`,
color: `rgb(214, 222, 235)`,
bg: `gray.2`,
color: `gray.8`,
px: 2,
py: 1,
borderRadius: `2px`,
},
".gatsby-highlight": {
fontSize: 1,
fontSize: [1, 1, 2],
position: `relative`,
webkitOverflowScrolling: `touch`,
bg: `rgb(1, 22, 39)`,
Expand Down Expand Up @@ -174,6 +174,7 @@ const code = {
},
"[data-name='live-preview'], [data-name='live-editor']": {
mx: [0, 0, 0, -3],
fontSize: [1, 1, 2],
},
".token-line": {
pr: 3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import useNetlify from "../hooks/use-netlify"
import useCircleCi from "../hooks/use-circle-ci"

const Item = ({ input, icon }: { input: string; icon: React.ReactNode }) => (
<Flex sx={{ mr: 4, mb: 4, alignItems: `center` }}>
<Flex sx={{ mr: [3, 3, 4], mb: [3, 3, 4], alignItems: `center` }}>
{icon}
<div
sx={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default merge(tailwind, {
},
icon: {
svg: {
width: [6, 6, 8],
width: 8,
borderRadius: `full`,
p: 2,
background: `white`,
Expand Down