Skip to content

Commit 581d7fc

Browse files
authored
Merge branch 'current' into nli/make-gcp-bigquery-ga
2 parents 4c65dd1 + 5a8067f commit 581d7fc

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

website/src/components/lifeCycle/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,6 @@ export default function Lifecycle(props) {
8484
color: fontColors[status] || '#000', // Default black for unknown status
8585
cursor: url ? 'pointer' : 'default', // Non-clickable for unknown status
8686
transition: 'background-color 0.2s ease, transform 0.2s ease, text-decoration 0.2s ease',
87-
padding: '4px 8px',
88-
borderRadius: '16px',
8987
textDecoration: 'none', // No underline
9088
};
9189

website/src/components/lifeCycle/styles.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.lifecycle {
22
background-color: #d1d5dc;
33
color: #030711;
4-
font-size: 0.8rem; /* Using rem so font size is relative to root */
5-
font-weight: 600; /* Normal font weight */
6-
padding: 1px 8px; /* Adjust padding for a more pill-like shape */
7-
border-radius: 16px; /* Larger border-radius for rounded edges */
4+
font-size: 1rem; /* Using rem so font size is relative to root */
5+
font-weight: 500; /* Normal font weight */
6+
padding: 8px 16px; /* Adjust padding for a more pill-like shape */
7+
border-radius: 20px; /* Larger border-radius for rounded edges */
88
margin-left: 12px; /* Margin to separate from the header text */
99
vertical-align: middle; /* Align with the title */
1010
display: inline-block; /* Use inline-block for better control */

0 commit comments

Comments
 (0)