akborana4 commited on
Commit
331d719
·
verified ·
1 Parent(s): dfcd8cd

Update static/css/terminal.css

Browse files
Files changed (1) hide show
  1. static/css/terminal.css +30 -0
static/css/terminal.css CHANGED
@@ -125,3 +125,33 @@
125
  .terminal-layout { flex-direction: column; }
126
  .terminal-sidebar { min-width: 100%; }
127
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  .terminal-layout { flex-direction: column; }
126
  .terminal-sidebar { min-width: 100%; }
127
  }
128
+
129
+ /* Add to static/css/terminal.css */
130
+
131
+ /* Update input area to handle the new form tag */
132
+ form.terminal-input-area {
133
+ margin: 0; /* Remove default form margins */
134
+ }
135
+
136
+ #terminal-send-btn {
137
+ padding: 8px 16px;
138
+ font-family: var(--font-ui);
139
+ font-weight: 700;
140
+ font-size: 13px;
141
+ flex-shrink: 0;
142
+ height: 36px;
143
+ display: flex;
144
+ align-items: center;
145
+ justify-content: center;
146
+ }
147
+
148
+ #terminal-input {
149
+ flex: 1;
150
+ background: transparent;
151
+ border: none;
152
+ color: #fff;
153
+ font-family: inherit;
154
+ font-size: 14px;
155
+ outline: none;
156
+ height: 100%; /* Fill the area */
157
+ }