fix(ui): fix share popup styles

This commit is contained in:
sylenien 2022-06-28 17:55:40 +02:00
parent e9482d1629
commit c8416e2c0c
2 changed files with 4 additions and 2 deletions

View file

@ -9,6 +9,7 @@ import IntegrateSlackButton from '../IntegrateSlackButton/IntegrateSlackButton';
import SessionCopyLink from './SessionCopyLink';
import Select from 'Shared/Select';
import { Tooltip } from 'react-tippy';
import cn from 'classnames';
@connectPlayer(state => ({
time: state.time,
@ -61,13 +62,14 @@ export default class SharePopup extends React.PureComponent {
position='bottom'
unmountHTMLWhenHide
useContext
arrow
trigger="click"
shown={this.handleOpen}
beforeHidden={this.handleClose}
html={
<div className={ styles.wrapper }>
<div className={ styles.header }>
<div className={ styles.title }>Share this session link to Slack</div>
<div className={ cn(styles.title, 'text-lg') }>Share this session link to Slack</div>
</div>
{ options.length === 0 ?
<>

View file

@ -9,6 +9,7 @@
.wrapper {
background-color: white;
width: 350px;
padding: 10px 8px;
}
.header {
@ -19,7 +20,6 @@
.title {
margin-right: auto;
font-weight: bold;
}
.closeButton {