Skip to content

Commit 27fa002

Browse files
authored
fix unmaintained label overflow, correct script (#2293)
1 parent 78c7607 commit 27fa002

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

components/Library/UnmaintainedLabel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default function UnmaintainedLabel({ alternatives, block }: Props) {
1919
<View style={tw`flex-shrink flex-row gap-1.5`}>
2020
<View
2121
style={[
22-
tw`-ml-5 -mt-1 mb-2 flex-shrink flex-row flex-wrap items-start gap-1 rounded-r border border-l-0 border-palette-gray3 bg-palette-gray1 py-1.5 pl-5 pr-3 dark:border-default dark:bg-dark`,
23-
block && tw`ml-0 rounded-lg rounded-r-lg border-l py-2 pl-3`,
22+
tw`-ml-5 -mt-1.5 mb-1.5 mr-8 flex-shrink flex-row flex-wrap items-start gap-1 rounded-r border border-l-0 border-palette-gray3 bg-palette-gray1 py-1.5 pl-5 pr-3 dark:border-default dark:bg-dark`,
23+
block && tw`ml-0 mr-0 rounded-lg rounded-r-lg border-l py-2 pl-3`,
2424
isSmallScreen && tw`flex-col`,
2525
strippedBackground(tw.prefixMatch('dark') ? 'var(--background)' : 'var(--gray-2)'),
2626
]}>

scripts/build-and-score-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const USE_DEBUG_REPOS = false;
2525

2626
// If script should only write to the local data file and not upload to the store.
2727
// This is useful for debugging and testing purposes.
28-
const ONLY_WRITE_LOCAL_DATA_FILE = true;
28+
const ONLY_WRITE_LOCAL_DATA_FILE = false;
2929

3030
// If script should try to scrape images from GitHub repositories.
3131
const SCRAPE_GH_IMAGES = false;

0 commit comments

Comments
 (0)