Skip to content

Commit 0aac4f9

Browse files
Merge branch 'main' into msi/atproto-oauth
2 parents d6558e0 + 2801235 commit 0aac4f9

5 files changed

Lines changed: 14 additions & 9 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,8 +789,10 @@ Format: `type(scope): description`
789789
- `fix(i18n): update French translations`
790790
- `chore(deps): update vite to v6`
791791

792+
Where front end changes are made, please include before and after screenshots in your pull request description.
793+
792794
> [!NOTE]
793-
> The subject must start with a lowercase letter. Individual commit messages within your PR don't need to follow this format since they'll be squashed.
795+
> Use lowercase letters in your pull request title. Individual commit messages within your PR don't need to follow this format since they'll be squashed.
794796
795797
### PR descriptions
796798

app/components/Compare/PackageSelector.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,10 @@ function handleFocus() {
204204
@click="addPackage(result.name)"
205205
>
206206
<span class="font-mono text-sm text-fg block">{{ result.name }}</span>
207-
<span v-if="result.description" class="text-xs text-fg-muted truncate mt-0.5">
207+
<span
208+
v-if="result.description"
209+
class="text-xs text-fg-muted truncate mt-0.5 w-full block"
210+
>
208211
{{ result.description }}
209212
</span>
210213
</ButtonBase>

app/components/Package/ManagerSelect.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function handleKeydown(event: KeyboardEvent) {
8888
<button
8989
ref="triggerRef"
9090
type="button"
91-
class="flex items-center gap-1.5 px-2 py-2 font-mono text-xs text-fg-muted bg-bg-subtle border border-border-subtle border-solid rounded-md transition-colors duration-150 hover:(text-fg border-border-hover) active:scale-95 focus:border-border-hover focus-visible:outline-accent/70 hover:text-fg"
91+
class="cursor-pointer flex items-center gap-1.5 px-2 py-2 font-mono text-xs text-fg-muted bg-bg-subtle border border-border-subtle border-solid rounded-md transition-colors duration-150 hover:(text-fg border-border-hover) active:scale-95 focus:border-border-hover focus-visible:outline-accent/70 hover:text-fg"
9292
:aria-expanded="isOpen"
9393
aria-haspopup="listbox"
9494
:aria-label="$t('package.get_started.pm_label')"
@@ -150,7 +150,7 @@ function handleKeydown(event: KeyboardEvent) {
150150
:key="pm.id"
151151
role="option"
152152
:aria-selected="selectedPM === pm.id"
153-
class="flex items-center gap-2 px-3 py-1.5 font-mono text-xs transition-colors duration-150"
153+
class="cursor-pointer flex items-center gap-2 px-3 py-1.5 font-mono text-xs transition-colors duration-150"
154154
:class="[
155155
selectedPM === pm.id ? 'text-fg' : 'text-fg-subtle',
156156
highlightedIndex === index ? 'bg-bg-elevated' : 'hover:bg-bg-elevated',

app/components/Terminal/Install.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
114114
:data-pm-cmd="pm.id"
115115
class="flex items-center gap-2 group/installcmd min-w-0"
116116
>
117-
<span class="text-fg-subtle font-mono text-sm select-none shrink-0">$</span>
117+
<span class="self-start text-fg-subtle font-mono text-sm select-none shrink-0">$</span>
118118
<code class="font-mono text-sm min-w-0"
119119
><span
120120
v-for="(part, i) in getInstallPartsForPM(pm.id)"
@@ -141,7 +141,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
141141
:data-pm-cmd="pm.id"
142142
class="flex items-center gap-2 min-w-0"
143143
>
144-
<span class="text-fg-subtle font-mono text-sm select-none shrink-0">$</span>
144+
<span class="self-start text-fg-subtle font-mono text-sm select-none shrink-0">$</span>
145145
<code class="font-mono text-sm min-w-0"
146146
><span
147147
v-for="(part, i) in getTypesInstallPartsForPM(pm.id)"
@@ -176,7 +176,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
176176
:data-pm-cmd="pm.id"
177177
class="flex items-center gap-2 group/runcmd"
178178
>
179-
<span class="text-fg-subtle font-mono text-sm select-none">$</span>
179+
<span class="self-start text-fg-subtle font-mono text-sm select-none">$</span>
180180
<code class="font-mono text-sm"
181181
><span
182182
v-for="(part, i) in getRunPartsForPM(pm.id, executableInfo?.primaryCommand)"
@@ -221,7 +221,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
221221
:data-pm-cmd="pm.id"
222222
class="flex items-center gap-2 group/createcmd"
223223
>
224-
<span class="text-fg-subtle font-mono text-sm select-none">$</span>
224+
<span class="self-start text-fg-subtle font-mono text-sm select-none">$</span>
225225
<code class="font-mono text-sm"
226226
><span
227227
v-for="(part, i) in getCreatePartsForPM(pm.id)"

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ onKeyStroke(
645645
v-if="resolvedVersion"
646646
as="nav"
647647
:aria-label="$t('package.navigation')"
648-
class="hidden sm:flex max-sm:flex max-sm:fixed max-sm:z-40 max-sm:inset-is-50% max-sm:-translate-x-50% max-sm:bg-[--bg]/90 max-sm:backdrop-blur-md max-sm:border max-sm:border-border max-sm:rounded-md max-sm:shadow-md"
648+
class="hidden sm:flex max-sm:flex max-sm:fixed max-sm:z-40 max-sm:inset-is-1/2 max-sm:-translate-x-1/2 max-sm:rtl:translate-x-1/2 max-sm:bg-[--bg]/90 max-sm:backdrop-blur-md max-sm:border max-sm:border-border max-sm:rounded-md max-sm:shadow-md"
649649
:class="$style.packageNav"
650650
>
651651
<LinkBase

0 commit comments

Comments
 (0)