* feat(Deeplinking): Implement for web. * ref(unsupported_browser): Move the mobile version to deeplinking feature * feat(deeplinking_mobile): Redesign. * fix(deeplinking): Use interface.NATIVE_APP_NAME. * feat(dial_in_summary): Add the PIN to the number link. * fix(deep_linking): Handle use case when there isn't deep linking image. * fix(deep_linking): css * fix(deep_linking): deeplink -> "deep linking" * fix(deeplinking_css): Remove position: fixed * docs(deeplinking): Add comment for the openWebApp action.
22 lines
483 B
SCSS
22 lines
483 B
SCSS
.no-mobile-app {
|
|
margin: 30% auto 0;
|
|
max-width: 25em;
|
|
text-align: center;
|
|
width: auto;
|
|
|
|
&__title {
|
|
border-bottom: 1px solid $inlayBorderColor;
|
|
color: $unsupportedBrowserTitleColor;
|
|
font-weight: 400;
|
|
letter-spacing: 0.5px;
|
|
padding-bottom: em(17, 24);
|
|
}
|
|
|
|
&__description {
|
|
font-size: $unsupportedBrowserTextSmallFontSize;
|
|
font-weight: 300;
|
|
letter-spacing: 1px;
|
|
margin-top: 1em;
|
|
}
|
|
}
|