File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
static/app/components/modals Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import moment from 'moment';
99import { ModalRenderProps } from 'sentry/actionCreators/modal' ;
1010import Button from 'sentry/components/button' ;
1111import ButtonBar from 'sentry/components/buttonBar' ;
12+ import FeatureBadge from 'sentry/components/featureBadge' ;
1213import SelectControl from 'sentry/components/forms/selectControl' ;
1314import GridEditable , {
1415 COL_WIDTH_MINIMUM ,
@@ -405,6 +406,7 @@ function WidgetViewerModal(props: Props) {
405406 < Tooltip title = { widget . title } showOnlyOnOverflow >
406407 < WidgetTitle > { widget . title } </ WidgetTitle >
407408 </ Tooltip >
409+ < FeatureBadge type = "beta" />
408410 </ StyledHeader >
409411 < Body > { renderWidgetViewer ( ) } </ Body >
410412 < StyledFooter >
@@ -437,6 +439,7 @@ export const modalCss = css`
437439const headerCss = css `
438440 margin : - ${ space ( 4 ) } - ${ space ( 4 ) } 0px - ${ space ( 4 ) } ;
439441 line-height : normal;
442+ display : flex;
440443` ;
441444const footerCss = css `
442445 margin : 0px - ${ space ( 4 ) } - ${ space ( 4 ) } ;
@@ -453,7 +456,8 @@ const Container = styled('div')`
453456` ;
454457
455458const TextContainer = styled ( 'div' ) `
456- padding-bottom: ${ space ( 1.5 ) } ;
459+ padding: ${ space ( 2 ) } 0 ${ space ( 1.5 ) } 0;
460+ color: ${ p => p . theme . gray300 } ;
457461` ;
458462
459463const StyledSelectControl = styled ( SelectControl ) `
You can’t perform that action at this time.
0 commit comments