Make zoom text bold

This commit is contained in:
Jordan Eldredge 2022-01-08 18:50:10 -08:00
parent c471df46ab
commit d69b7cc835

View file

@ -67,7 +67,7 @@ const Zoom = ({ columnCount, windowWidth }) => {
title={"Zoom Out"}
disabled={scaleDown * SCREENSHOT_WIDTH <= 100}
>
{""}
</Button>
</div>
);
@ -84,6 +84,7 @@ function Button({ ...props }) {
border: "none",
cursor: props.disabled ? "default" : "pointer",
font: "inherit",
fontWeight: 'bold',
outline: "inherit",
background: "none",
paddingLeft: 14,