File size: 309 Bytes
74aacd5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.prompt-wrapper {
  display: flex;
  gap: 12px;
}

.prompt-wrapper input {
  all: unset;
  border-width: 0;
  border-radius: 0.5rem;
  min-width: 600px;
  padding: 0 0.8rem;
  outline: 1px solid var(--border-color);

  &:focus-visible {
    border-width: 0;
    outline: 1px solid var(--yellow-accent);
  }
}