Spaces:
Build error
Build error
Update utils/style.css
Browse files- utils/style.css +11 -9
utils/style.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
/* style.css */
|
| 2 |
|
| 3 |
-
/* Container for textbox + button
|
| 4 |
#input-container {
|
| 5 |
display: flex;
|
| 6 |
align-items: center;
|
|
@@ -12,7 +12,7 @@
|
|
| 12 |
padding: 4px;
|
| 13 |
}
|
| 14 |
|
| 15 |
-
/* Textbox styling
|
| 16 |
#chat-input {
|
| 17 |
flex: 1;
|
| 18 |
border: none !important;
|
|
@@ -20,17 +20,19 @@
|
|
| 20 |
padding: 8px;
|
| 21 |
}
|
| 22 |
|
| 23 |
-
/*
|
| 24 |
#ask-button {
|
| 25 |
background-color: #FF6F00 !important; /* Orange color */
|
| 26 |
color: white !important;
|
| 27 |
border: none !important;
|
| 28 |
border-radius: 4px;
|
| 29 |
cursor: pointer;
|
| 30 |
-
|
| 31 |
-
/*
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
padding:
|
| 35 |
-
margin-left: 4px;
|
|
|
|
|
|
|
| 36 |
}
|
|
|
|
| 1 |
/* style.css */
|
| 2 |
|
| 3 |
+
/* Container for textbox + button */
|
| 4 |
#input-container {
|
| 5 |
display: flex;
|
| 6 |
align-items: center;
|
|
|
|
| 12 |
padding: 4px;
|
| 13 |
}
|
| 14 |
|
| 15 |
+
/* Textbox styling */
|
| 16 |
#chat-input {
|
| 17 |
flex: 1;
|
| 18 |
border: none !important;
|
|
|
|
| 20 |
padding: 8px;
|
| 21 |
}
|
| 22 |
|
| 23 |
+
/* Updated, significantly narrower orange arrow button */
|
| 24 |
#ask-button {
|
| 25 |
background-color: #FF6F00 !important; /* Orange color */
|
| 26 |
color: white !important;
|
| 27 |
border: none !important;
|
| 28 |
border-radius: 4px;
|
| 29 |
cursor: pointer;
|
| 30 |
+
|
| 31 |
+
font-size: 10px; /* Smaller font size for the arrow */
|
| 32 |
+
width: 15px; /* Fixed width: adjust this value to change horizontal size */
|
| 33 |
+
height: 20px; /* Fixed height to ensure a neat appearance */
|
| 34 |
+
padding: 0; /* Remove extra horizontal padding */
|
| 35 |
+
margin-left: 4px; /* Small gap between textbox and button */
|
| 36 |
+
text-align: center; /* Center the arrow horizontally */
|
| 37 |
+
line-height: 20px; /* Vertically center the arrow within the button */
|
| 38 |
}
|