Skip to content

Instantly share code, notes, and snippets.

@andycarrell
Created June 10, 2019 21:23
Show Gist options
  • Save andycarrell/fe37d8886a083ec8d3343d3382c1c406 to your computer and use it in GitHub Desktop.
Save andycarrell/fe37d8886a083ec8d3343d3382c1c406 to your computer and use it in GitHub Desktop.
import styled from "styled-components/macro"
export const Dont = props => <sup {...props} />
export const Super0 = styled.span`
vertical-align: baseline;
position: relative;
top: -0.4em;
font-size: smaller;
line-height: 0;
`
export const Super1 = styled.span`
&::after {
content: "${props => props.superScript}";
vertical-align: baseline;
position: relative;
top: -0.4em;
font-size: smaller;
line-height: 0;
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment