Add disclaimer text on the bottom

This commit is contained in:
2019-06-23 21:27:40 +05:30
parent 63575fe025
commit 964c2b5305
2 changed files with 18 additions and 0 deletions
+13
View File
@@ -107,3 +107,16 @@
width: 100%; width: 100%;
transform: translate(-50%, 0); transform: translate(-50%, 0);
} }
.disclaimer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0 1em;
padding: 0.5em;
font-size: .6em;
background-color: rgba(255,255,255,0.75);
border-radius: .5em;
text-align: center;
}
+5
View File
@@ -115,6 +115,11 @@ class IsNiftyOpenApp extends React.Component {
/> />
</div> </div>
</div> </div>
<div className="disclaimer">
{`This data is taken from Karanataka ETV Flipkart holidays list,
but doesn't include optional holidays.
There is no gurantee that this data is correct or will be kept updated.`}
</div>
</div> </div>
); );
} }