silphius/app/react/components/dom/chat/input.module.css
2024-07-23 23:27:08 -05:00

21 lines
399 B
CSS

.input {
line-height: 0;
input[type="text"] {
background-color: #00000044;
border: 1px solid #333333;
color: #ffffff;
font-family: Cookbook, Georgia, 'Times New Roman', Times, serif;
font-size: 16px;
margin: 4px;
padding: 0;
padding-left: 4px;
width: calc(100% - 8px);
&:focus-visible {
border: 1px solid #999999;
outline: none;
}
}
}