Skip to content

Commit 48ae341

Browse files
authored
Apps/roadmap/updates (#169)
* support guidde videos * increase padding * update deps * [email protected]
1 parent 521ce64 commit 48ae341

File tree

4 files changed

+145
-145
lines changed

4 files changed

+145
-145
lines changed

apps/roadmap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
"typecheck": "tsgo --noEmit"
2525
},
2626
"type": "module",
27-
"version": "1.0.0"
27+
"version": "1.0.1"
2828
}

apps/roadmap/src/components/cardOverlay.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const CardOverlayContent: FC<{
9191
as="div"
9292
borderColor={isDark ? "secondary" : "primary"}
9393
borderWidth="0 0 small"
94-
padding="0 0 small small"
94+
padding="paddingCardSmall paddingCardSmall paddingCardSmall paddingCardLarge"
9595
themeOverride={{
9696
borderColorPrimary: "#D7DADE",
9797
borderColorSecondary: "#2A353F",
@@ -171,7 +171,7 @@ const CardOverlayContent: FC<{
171171
</Flex.Item>
172172
</Flex>
173173
</View>
174-
<View as="div" padding="small">
174+
<View as="div" padding="paddingCardSmall paddingCardLarge paddingCardLarge">
175175
<Flex
176176
alignItems="start"
177177
direction={isNarrow ? "column" : "row"}

apps/roadmap/src/utils/getLinkType.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const getLinkTitle = (link: VerifiedLink): string => {
3030
if (
3131
href.match(/\.(mp4|mov|avi|mkv|mpeg)$/) ||
3232
host.match(
33-
/(?:^|\.)((instructuremedia|youtube|vimeo|wistia)\.com|youtu\.be)$/,
33+
/(?:^|\.)((instructuremedia|youtube|vimeo|wistia|guidde)\.com|youtu\.be)$/,
3434
)
3535
)
3636
return "video";

0 commit comments

Comments
 (0)