Skip to content

Commit 9b002c0

Browse files
committed
remove ellipsis and style links in roadmap
1 parent feb93d6 commit 9b002c0

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

components/RoadmapStatus.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ interface RoadmapStatusProps {
1313
const messages = defineMessages({
1414
exploring: {
1515
id: "roadmap.status.exploring",
16-
defaultMessage: "Exploring...",
16+
defaultMessage: "Exploring",
1717
icon: ExploringIcon,
1818
},
1919
working: {
2020
id: "roadmap.status.working",
21-
defaultMessage: "Working...",
21+
defaultMessage: "Working",
2222
icon: WorkingIcon,
2323
},
2424
next: {

pages/roadmap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const Roadmap = ({
4343
<h2 className="font-bold text-b1 col-start-2">
4444
{data.title}
4545
</h2>
46-
<div className="col-start-2 flex flex-col gap-1">
46+
<div className="col-start-2 flex flex-col gap-1 body-text">
4747
<Markdown allowedElements={allowedElements}>
4848
{content}
4949
</Markdown>

styles/globals.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,14 @@
137137
.carousel__dot.carousel__dot--selected {
138138
@apply bg-blurple-500;
139139
}
140+
141+
.body-text {
142+
a {
143+
@apply text-blurple-500;
144+
145+
&:hover {
146+
text-decoration-line: revert;
147+
}
148+
}
149+
}
140150
}

0 commit comments

Comments
 (0)