Created
June 10, 2019 21:23
-
-
Save andycarrell/fe37d8886a083ec8d3343d3382c1c406 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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