change(ui) - issue form and share popup titles

This commit is contained in:
Shekar Siri 2023-05-03 18:39:30 +02:00
parent cad7dd39d7
commit e23a7b8033
3 changed files with 5 additions and 6 deletions

View file

@ -11,7 +11,7 @@ const IssuesModal = ({
}) => {
return (
<div className={ stl.wrapper }>
<h3 className="mb-6 text-lg flex items-center">
<h3 className="text-xl font-semibold">
{/* <Icon name={headerIcon} size="18" color="color-gray-darkest" /> */}
<span>{`Report an Issue on ${provider === 'jira' ? 'Jira' : 'Github'}`}</span>
</h3>

View file

@ -113,10 +113,8 @@ export default class SharePopup extends React.PureComponent {
<Loader loading />
) : (
<>
<div className={styles.header}>
<div className={cn(styles.title, 'text-lg')}>
Share this session link to Slack/MS Teams
</div>
<div className="text-xl mr-4 font-semibold mb-4">
Share this session link to Slack/MS Teams
</div>
{slackOptions.length > 0 || msTeamsOptions.length > 0 ? (
<div>

View file

@ -8,8 +8,9 @@
.wrapper {
background-color: white;
width: 350px;
width: 390px;
padding: 10px 8px;
color: $gray-darkest !important;
}
.header {