Skip to content

Commit

Permalink
Adjust width requirement for big enter (#1284)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Jul 8, 2023
1 parent d79dc63 commit f033623
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/BaseKey.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const _getKeySizeClass = (unith, unitw) => {
if (unith === 2) {
if (unitw === 1.25) {
return 'kiso';
} else if (unitw === 2.25) {
} else if (unitw === 1.5) {
return 'kbae';
}
}
Expand Down Expand Up @@ -445,7 +445,6 @@ export default {
width: calc(0.5 * var(--default-key-x-spacing) + var(--default-key-width));
height: calc(1.1 * var(--default-key-height));
padding: 0px;
margin-left: calc(var(--default-key-x-spacing) * 0.75);
border-radius: 6px 6px 0px 0px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 0px 2px inset,
rgba(0, 0, 0, 0.3) 0px 0px 0px 1px;
Expand Down

0 comments on commit f033623

Please sign in to comment.