Skip to content

Commit d7ebbc2

Browse files
committed
Fix calc font size
1 parent 0be56bc commit d7ebbc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/programs/Calculator/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const StyledInputOutput = styled.div<{
2020
direction: "input" | "output";
2121
}>`
2222
box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.5) inset;
23-
font-size: ${(props) => (props.direction === "input" ? 22 : 18)}px;
23+
font-size: ${(props) => (props.direction === "input" ? 20 : 16)}px;
2424
width: 100%;
2525
height: 100%;
2626
display: flex;

0 commit comments

Comments
 (0)