Skip to content

Commit 83b04f6

Browse files
authored
Merge pull request #234 from watson-developer-cloud/terms-of-use
Terms of use
2 parents f9f066f + 66ed091 commit 83b04f6

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

public/css/app.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ div {
7373
}
7474

7575
.chat-column {
76+
display: flex;
77+
flex-direction: column;
7678
height: 90%;
7779
padding: 0.9375rem 0 0.625rem 0;
7880
margin: auto;
@@ -82,6 +84,7 @@ div {
8284
}
8385

8486
.user-typing {
87+
flex: 0;
8588
border: none;
8689
color: #8d25e8;
8790
margin: 0.75rem;
@@ -93,7 +96,7 @@ div {
9396
margin: 0.75rem;
9497
overflow-y: auto;
9598
overflow-x: hidden;
96-
height: calc(100% - 4rem);
99+
flex: 1;
97100
}
98101

99102
.message-inner {

public/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
Data Protection
3333
Regulation (EU) 2016/679.
3434
</div>
35+
<div class="disclaimer">
36+
By using this application, you agree to the&nbsp;
37+
<a target="_blank" rel="noreferrer noopener" href="https://watson-developer-cloud.github.io/terms?name=Watson%20Assistant%20Demo">
38+
Terms of Use
39+
</a>
40+
</div>
3541
</div>
3642
</div>
3743
<div id="payload-column" class="fixed-column content-column">
@@ -50,4 +56,4 @@
5056
<script src="js/global.js"></script>
5157
<script type="text/javascript" src="https://cdn.rawgit.com/watson-developer-cloud/watson-developer-cloud.github.io/master/analytics.js"></script>
5258
</body>
53-
</html>
59+
</html>

0 commit comments

Comments
 (0)