Skip to content

Commit

Permalink
Fix issue of additional scroll bar
Browse files Browse the repository at this point in the history
  • Loading branch information
aliiyuu authored Aug 21, 2024
1 parent 6ccc70f commit d7d9a3a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions frontend/src/components/Chatbot.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.container {
padding: 50px;
padding-bottom: 70px;
margin-top: 200px;
margin-top: 350px;
margin-bottom: 60px;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
width: 65vw;
height: 85vh;
height: 100vh;
text-align: center;
background:#777ed4; /* Fallback for old browsers */
background: -webkit-linear-gradient(to right, #6b90e0, #777ed4); /* Chrome 10-25, Safari 5.1-6 */
Expand All @@ -19,6 +19,7 @@
.container {
width: 75vw;
padding: 30px;
margin-top: 250px;
}
}

Expand All @@ -27,7 +28,7 @@
padding: 25px;
margin-bottom: 10px;
height: 50vh;
overflow:wrap;
overflow-x: wrap;
overflow-y: auto;
background:#473b8b;
opacity: 0.5;
Expand All @@ -50,6 +51,7 @@ h1 {
padding: 0;
margin: 0;
color:white;
overflow-x: wrap;
}

.message {
Expand Down

0 comments on commit d7d9a3a

Please sign in to comment.