mirror of https://github.com/vector-im/riot-web
WIP
parent
158036ccf9
commit
3901cd9c72
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue