You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
WIP
This commit is contained in:
@@ -42,6 +42,16 @@ limitations under the License.
|
||||
margin: 0 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.mx_HostSignupDialog_footer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: baseline;
|
||||
|
||||
img {
|
||||
padding-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
iframe {
|
||||
|
||||
@@ -231,7 +231,9 @@ export default class HostSignupDialog extends React.PureComponent<IProps, IState
|
||||
{this.config.info.image &&
|
||||
<img
|
||||
alt={this.config.info.image.alt}
|
||||
height={this.config.info.image.height}
|
||||
src={this.config.info.image.src}
|
||||
width={this.config.info.image.width}
|
||||
/>
|
||||
}
|
||||
<div className="mx_HostSignupDialog_content_top">
|
||||
@@ -279,11 +281,13 @@ export default class HostSignupDialog extends React.PureComponent<IProps, IState
|
||||
{this.config.info.footer &&
|
||||
<div className="mx_HostSignupDialog_text_light">
|
||||
<small>
|
||||
<p>
|
||||
<p className="mx_HostSignupDialog_footer">
|
||||
{this.config.info.footer.image &&
|
||||
<img
|
||||
alt={this.config.info.footer.image.alt}
|
||||
height={this.config.info.footer.image.height}
|
||||
src={this.config.info.footer.image.src}
|
||||
width={this.config.info.footer.image.width}
|
||||
/>
|
||||
}
|
||||
{this.config.info.footer.text}
|
||||
|
||||
@@ -48,7 +48,9 @@ export interface IPostmessage {
|
||||
|
||||
interface IImage {
|
||||
alt: string;
|
||||
height: number;
|
||||
src: string;
|
||||
width: number;
|
||||
}
|
||||
|
||||
interface ILink {
|
||||
|
||||
Reference in New Issue
Block a user