rusackas commented on a change in pull request #18662:
URL: https://github.com/apache/superset/pull/18662#discussion_r804332783



##########
File path: 
superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx
##########
@@ -332,6 +333,38 @@ const thumbnailContainerCss = (theme: SupersetTheme) => 
css`
   }
 `;
 
+const BetaBadge = styled.div`
+  ${({ theme }) => `
+    border: 1px solid #1985a0;
+    box-sizing: border-box;
+    border-radius: 4px;
+    background: #ffffff;
+    line-height: ${theme.gridUnit * 2.5}px;
+    color: #1985a0;
+    font-size: 12px;
+    font-weight: 500;

Review comment:
       ```suggestion
       font-weight: ${theme.typography.weights.bold};
   ```
   This will put it at 700. Instead of `bold` we could use `normal` which is 
400. I figure this kind of label is usually bold, thus my guess at the 
suggestion here.
   
   @kasiazjc your call if we want to (a) pick 400 or 700, (b) add more weights 
to the theme, or (c) make this a special exception.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to