react-calculatxr
Version:
A calculator similar to the windows calculator
19 lines (18 loc) • 385 B
CSS
.button {
padding: 0;
border: unset;
display: flex;
outline: unset;
cursor: pointer;
align-items: center;
font-family: inherit;
box-sizing: border-box;
justify-content: center;
color: var(--color-text, inherit);
background: var(--background, transparent);
}
.button_circular {
border-radius: 100%;
width: var(--size, 40px);
height: var(--size, 40px);
}