Skip to content

Commit 5a19e47

Browse files
Some style changes.
1 parent 70b2784 commit 5a19e47

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@
1818
<div id="chat-history">
1919
</div>
2020
<div id="user-input-section">
21-
<input type="text" id="text-input-box" placeholder="Write your event description here...">
21+
<textarea id="text-input-box" placeholder="Write your event description here..." rows="4"
22+
cols="50"></textarea>
2223
</div>
2324
</div>
24-
<script src="calendar.js"></script>
25-
<script src="interaction.js"></script>
25+
<script type="module" src="calendar.js"></script>
26+
<script type="module" src="interaction.js"></script>
2627
</body>
2728

2829
</html>

styles.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,10 @@ p {
2828
#text-input-box {
2929
height: 100px;
3030
width: 100%;
31+
display: block;
32+
line-height: 1.5;
33+
border: 1px solid #ccc;
34+
border-radius: 4px;
3135
border: 10px;
36+
resize: vertical;
3237
}

0 commit comments

Comments
 (0)