Skip to content

Commit 4454ed1

Browse files
committed
1.1.3 - alignment, badge change
1 parent 0086e49 commit 4454ed1

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default async function Page(props) {
131131
<br />
132132
<Grid>
133133
<Row>
134-
{Package.name.toUpperCase()} <Badge>Version {Package.version}</Badge>
134+
{Package.name.toUpperCase()} <Badge>{Package.version}</Badge>
135135
</Row>
136136
<Row>{Package.description}</Row>
137137
</Grid>

components/ActionButton.module.scss

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
11
.hotkey {
22
background: var(--theme-button-foreground);
33
color: var(--theme-text);
4-
flex-shrink: 0;
54
cursor: pointer;
5+
flex-shrink: 0;
66
font-weight: 400;
77
padding: 0 1ch 0 1ch;
8-
user-select: none;
9-
flex-shrink: 0;
108
text-indent: 0ch;
9+
user-select: none;
1110
}
1211

1312
.content {
14-
box-shadow: inset 0 0 0 2px var(--theme-button-foreground);
1513
background: var(--theme-button-background);
16-
text-indent: 0ch;
17-
min-width: 10%;
18-
width: 100%;
19-
font-weight: 400;
14+
box-shadow: inset 0 0 0 2px var(--theme-button-foreground);
2015
cursor: pointer;
16+
flex-shrink: 0;
17+
font-weight: 400;
2118
padding: 0 1ch 0 1ch;
19+
text-indent: 0ch;
2220
text-transform: uppercase;
2321
user-select: none;
2422
}
@@ -35,6 +33,7 @@
3533
box-sizing: border-box;
3634
font-family: var(--font-family-mono);
3735
font-size: var(--font-size);
36+
flex-shrink: 0;
3837

3938
&:hover .hotkey {
4039
background: var(--theme-focused-foreground);

components/Badge.module.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
outline: 0;
88
border: 0;
99
font-family: var(--font-family-mono);
10-
font-size: 10px;
1110
min-height: calc(var(--theme-line-height-base) * var(--font-size));
1211
text-transform: uppercase;
1312
transition: 200ms ease all;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"node": ">=18"
66
},
77
"license": "MIT",
8-
"version": "1.1.2",
8+
"version": "1.1.3",
99
"scripts": {
1010
"dev": "next -p 10000",
1111
"build": "next build",

0 commit comments

Comments
 (0)