Skip to content

Commit

Permalink
MODIFIED: chatbot size for desktop view
Browse files Browse the repository at this point in the history
  • Loading branch information
AquibPy committed Apr 24, 2024
1 parent 7a0db2e commit c1bfc51
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
border-radius: 15px;
background-color: #f9f9f9;
padding: 20px;
max-width: 500px;
max-width: 500px; /* Adjust max-width as needed */
width: 90%;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, box-shadow 0.3s ease;
Expand Down Expand Up @@ -231,6 +231,13 @@
background-position: center;
background-attachment: fixed;
}

/* Adjustments for larger screens */
@media (min-width: 768px) {
.chat-container {
max-width: 700px; /* Adjust max-width for larger screens */
}
}
</style>
</head>
<body>
Expand Down

0 comments on commit c1bfc51

Please sign in to comment.