Rekt67 commited on
Commit
e5c497d
·
verified ·
1 Parent(s): 68aa355

Update utils/style.css

Browse files
Files changed (1) hide show
  1. utils/style.css +12 -12
utils/style.css CHANGED
@@ -1,18 +1,18 @@
1
  /* style.css */
2
 
3
- /* Container for the textbox and button */
4
  #input-container {
5
  display: flex;
6
  align-items: center;
7
  width: 100%;
8
- max-width: 600px; /* Adjust as needed */
9
- margin: 0 auto; /* Center container horizontally */
10
- border: 1px solid #ccc; /* Box border */
11
  border-radius: 4px;
12
  padding: 4px;
13
  }
14
 
15
- /* Textbox styling */
16
  #chat-input {
17
  flex: 1;
18
  border: none !important;
@@ -20,17 +20,17 @@
20
  padding: 8px;
21
  }
22
 
23
- /* Even smaller 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
- /* Smaller dimensions for the arrow button */
32
- font-size: 10px; /* Reduced font size */
33
- min-width: 25px; /* Reduced minimum width */
34
- padding: 2px 4px; /* Less padding for a compact look */
35
- margin-left: 4px; /* Small space between textbox and button */
36
  }
 
1
  /* style.css */
2
 
3
+ /* Container for textbox + button (unchanged) */
4
  #input-container {
5
  display: flex;
6
  align-items: center;
7
  width: 100%;
8
+ max-width: 600px;
9
+ margin: 0 auto;
10
+ border: 1px solid #ccc;
11
  border-radius: 4px;
12
  padding: 4px;
13
  }
14
 
15
+ /* Textbox styling (unchanged) */
16
  #chat-input {
17
  flex: 1;
18
  border: none !important;
 
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
  }