Files
ColdBreeze-chat-web/src/common/component/StyledInput.js
T
2022-02-27 12:30:14 +08:00

16 lines
342 B
JavaScript

import styled from "styled-components";
const StyledInput = styled.input`
width: 100%;
background: #ffffff;
border: 1px solid #e5e7eb;
box-shadow: 0px 1px 2px rgba(31, 41, 55, 0.08);
border-radius: 4px;
font-weight: normal;
font-size: 14px;
line-height: 20px;
color: #78787c;
padding: 8px;
`;
export default StyledInput;