mirror of https://github.com/jitsi/jitsi-meet
parent
1268afd3f8
commit
05b7df26e6
@ -0,0 +1,3 @@ |
||||
@import 'no-mobile-app'; |
||||
@import 'unsupported-desktop-browser'; |
||||
@import 'unsupported-mobile-browser'; |
@ -0,0 +1,21 @@ |
||||
.no-mobile-app { |
||||
margin: 30% auto 0; |
||||
width: auto; |
||||
max-width: 25em; |
||||
text-align: center; |
||||
|
||||
&__title { |
||||
padding-bottom: em(17, 24); |
||||
border-bottom: 1px solid $auiBorderColor; |
||||
font-weight: 400; |
||||
letter-spacing: 0.5px; |
||||
color: #fff; |
||||
} |
||||
|
||||
&__description { |
||||
margin-top: 1em; |
||||
font-size: 17px; |
||||
font-weight: 300; |
||||
letter-spacing: 1px; |
||||
} |
||||
} |
@ -0,0 +1,31 @@ |
||||
/* global interfaceConfig */ |
||||
import React, { Component } from 'react'; |
||||
|
||||
/** |
||||
* React component representing no mobile page. |
||||
* |
||||
* @class NoMobileApp |
||||
*/ |
||||
export default class NoMobileApp extends Component { |
||||
|
||||
/** |
||||
* Renders the component. |
||||
* |
||||
* @returns {ReactElement} |
||||
*/ |
||||
render() { |
||||
const ns = 'no-mobile-app'; |
||||
|
||||
return ( |
||||
<div className = { ns }> |
||||
<h2 className = { `${ns}__title` }> |
||||
Video chat isn't available in the mobile apps |
||||
</h2> |
||||
<p className = { `${ns}__description` }> |
||||
Please use { interfaceConfig.APP_NAME } on <br /> |
||||
Desktop top join calls. |
||||
</p> |
||||
</div> |
||||
); |
||||
} |
||||
} |
Loading…
Reference in new issue