silphius/app/react-components/dom/chat/input.module.css

21 lines
359 B
CSS
Raw Normal View History

2024-07-14 02:26:43 -05:00
2024-07-14 07:24:15 -05:00
.input {
2024-07-14 02:26:43 -05:00
line-height: 0;
input[type="text"] {
background-color: #00000044;
border: 1px solid #333333;
color: #ffffff;
2024-07-14 07:24:15 -05:00
font-family: "Cookbook";
font-size: 16px;
2024-07-14 02:26:43 -05:00
margin: 4px;
2024-07-14 07:24:15 -05:00
padding: 0;
padding-left: 4px;
2024-07-14 02:26:43 -05:00
width: calc(100% - 8px);
&:focus-visible {
border: 1px solid #999999;
outline: none;
}
}
}