Skip to content

Commit

Permalink
Merge branch 'main' into durnford/fix/response-editor
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurnford committed May 16, 2021
2 parents eb15035 + dc07be4 commit cedae6c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import formatMessage from 'format-message';
const styles = {
detailListContainer: css`
flex-grow: 1;
height: 350px;
height: 310px;
position: relative;
overflow: hidden;
`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ const ExportSkillModal: React.FC<ExportSkillModalProps> = ({ onSubmit, onDismiss
onDismiss={handleDismiss}
>
<div css={styles.container}>
<p>
<p style={{ height: '38px' }}>
{typeof subText === 'function' && subText()}
{helpLink && (
<React.Fragment>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ export const styles = {
maxWidth: '80% !important',
width: '960px !important',
},
scrollableContent: {
overflow: 'hidden' as 'hidden',
},
},
container: css`
height: 520px;
height: 500px;
display: flex;
flex-direction: column;
justify-content: space-between;
Expand Down

0 comments on commit cedae6c

Please sign in to comment.