Rekt67 commited on
Commit
7b4d90f
·
verified ·
1 Parent(s): e5c497d

Update utils/style.css

Browse files
Files changed (1) hide show
  1. utils/style.css +11 -9
utils/style.css CHANGED
@@ -1,6 +1,6 @@
1
  /* style.css */
2
 
3
- /* Container for textbox + button (unchanged) */
4
  #input-container {
5
  display: flex;
6
  align-items: center;
@@ -12,7 +12,7 @@
12
  padding: 4px;
13
  }
14
 
15
- /* Textbox styling (unchanged) */
16
  #chat-input {
17
  flex: 1;
18
  border: none !important;
@@ -20,17 +20,19 @@
20
  padding: 8px;
21
  }
22
 
23
- /* Make the orange arrow button much narrower */
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
- /* Tweak these to reduce the button width */
32
- font-size: 10px; /* Decrease font size */
33
- min-width: 15px; /* Shrink minimum width */
34
- padding: 2px 4px; /* Tighten padding for a small footprint */
35
- margin-left: 4px; /* Gap between textbox and button; reduce if needed */
 
 
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
  }