Skip to content

Commit b8a4fb1

Browse files
committed
Remove "Nightly Release" text and box release tag
1 parent 76e5bbb commit b8a4fb1

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

src/components/ChangelogSection/ChangelogEntry/ChangelogEntry.module.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@
2929
padding-top: 4px;
3030
}
3131

32+
.releaseTag {
33+
font-size: 14px;
34+
font-weight: 700;
35+
padding: 4px;
36+
border-radius: 4px;
37+
background: #E3E4E7;
38+
color: #333;
39+
}
40+
3241
.commitList {
3342
display: flex;
3443
flex-direction: column;

src/components/ChangelogSection/ChangelogEntry/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const NightlyChangelogEntry: React.FC<Props> = ({ release }: Props) => {
1111
return (
1212
<div className={styles.container}>
1313
<div className={styles.header}>
14-
Nightly Release {release.tagName}
14+
<span className={styles.releaseTag}>{release.tagName}</span>
1515
{
1616
release.publishedAt ? (
1717
<div className={styles.releaseDate}>

0 commit comments

Comments
 (0)