forked from GetStream/stream-chat-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
620e596
commit 042484f
Showing
2 changed files
with
85 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Stream Chat React Native - Docs</title> | ||
<link rel="icon" type="image/x-icon" href="https://getstream.imgix.net/images/favicons/favicon-96x96.png"> | ||
</head> | ||
<body> | ||
<div id="rsg-root"></div> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>DEPRECATED Stream Chat React Native - Docs DEPRECATED</title> | ||
<link rel="icon" type="image/x-icon" href="https://getstream.imgix.net/images/favicons/favicon-96x96.png"> | ||
<style> | ||
.deprecationBanner { | ||
position: fixed; | ||
right: 0; | ||
left: 210px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
background-color: #ae423f; | ||
} | ||
|
||
.deprecationText, a { | ||
color: #fff; | ||
font-weight: bold; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif | ||
} | ||
|
||
a { | ||
color: #78d4fc; | ||
font-size: 1.5rem; | ||
padding: 20px 0; | ||
} | ||
|
||
|
||
@media only screen and (max-width: 600px){ | ||
.deprecationBanner { | ||
left: 0; | ||
} | ||
|
||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class='deprecationBanner'> | ||
<h1 class='deprecationText'>⚠️ This Documentation is Deprecated ⚠️</h1> | ||
<a href='https://getstream.io/chat/docs/sdk/reactnative/'>Click here to consult our new docs</a> | ||
</div> | ||
<div id="rsg-root"></div> | ||
<script src="build/bundle.a39375a1.js"></script> | ||
</body> | ||
</html> | ||
</html> |