Commit acbcd376 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

style: update type sizes (#3292)

parent 01c467b4
...@@ -83,9 +83,9 @@ export default function Output({ disabled, focused, children }: PropsWithChildre ...@@ -83,9 +83,9 @@ export default function Output({ disabled, focused, children }: PropsWithChildre
<DynamicThemeProvider color={color}> <DynamicThemeProvider color={color}>
<OutputColumn hasColor={hasColor} gap={0.5}> <OutputColumn hasColor={hasColor} gap={0.5}>
<Row> <Row>
<ThemedText.Subhead2 color="secondary"> <ThemedText.Subhead1 color="secondary">
<Trans>For</Trans> <Trans>For</Trans>
</ThemedText.Subhead2> </ThemedText.Subhead1>
</Row> </Row>
<TokenInput <TokenInput
currency={swapOutputCurrency} currency={swapOutputCurrency}
......
...@@ -16,6 +16,7 @@ const TokenInputRow = styled(Row)` ...@@ -16,6 +16,7 @@ const TokenInputRow = styled(Row)`
const ValueInput = styled(DecimalInput)<{ $loading: boolean }>` const ValueInput = styled(DecimalInput)<{ $loading: boolean }>`
color: ${({ theme }) => theme.primary}; color: ${({ theme }) => theme.primary};
height: 1em;
:hover:not(:focus-within) { :hover:not(:focus-within) {
color: ${({ theme }) => theme.onHover(theme.primary)}; color: ${({ theme }) => theme.onHover(theme.primary)};
......
...@@ -28,7 +28,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>` ...@@ -28,7 +28,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>`
font-size: 16px; font-size: 16px;
font-smooth: always; font-smooth: always;
font-variant: none; font-variant: none;
height: 346px; height: 348px;
min-width: 300px; min-width: 300px;
padding: 0.25em; padding: 0.25em;
position: relative; position: relative;
......
...@@ -20,7 +20,7 @@ export function H1(props: TextProps) { ...@@ -20,7 +20,7 @@ export function H1(props: TextProps) {
} }
export function H2(props: TextProps) { export function H2(props: TextProps) {
return <TextWrapper className="headline headline-2" fontSize={24} fontWeight={400} lineHeight="32px" {...props} /> return <TextWrapper className="headline headline-2" fontSize={32} fontWeight={400} lineHeight="32px" {...props} />
} }
export function H3(props: TextProps) { export function H3(props: TextProps) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment