DocSpace-client/packages/shared/components/code-input/CodeInput.styled.ts

71 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-02-02 21:57:47 +00:00
import styled from "styled-components";
import { Base } from "../../themes";
import { mobile, tablet } from "../../utils";
2022-02-02 21:57:47 +00:00
const InputWrapper = styled.div`
display: flex;
justify-content: center;
align-items: center;
2023-06-14 07:25:59 +00:00
direction: ltr;
2022-02-02 21:57:47 +00:00
input {
height: 120px;
width: 100px;
display: block;
background: ${(props) => props.theme.codeInput.background};
border: ${(props) => props.theme.codeInput.border};
color: ${(props) => props.theme.codeInput.color};
2022-02-02 21:57:47 +00:00
box-sizing: border-box;
border-radius: 8px;
margin: 0 4px;
text-align: center;
font-size: ${(props) => props.theme.getCorrectFontSize("72px")};
2022-02-02 21:57:47 +00:00
2023-10-06 11:19:50 +00:00
@media ${tablet} {
2022-02-02 21:57:47 +00:00
height: 76px;
width: 64px;
font-size: ${(props) => props.theme.getCorrectFontSize("48px")};
2022-02-02 21:57:47 +00:00
}
2023-10-06 11:19:50 +00:00
@media ${mobile} {
2022-02-02 21:57:47 +00:00
height: 48px;
width: 40px;
font-size: ${(props) => props.theme.getCorrectFontSize("32px")};
2022-02-02 21:57:47 +00:00
}
&:last-child {
margin: 0;
}
}
input:focus {
border: 1px solid #5299e0;
outline: none;
}
2022-02-03 11:08:45 +00:00
input:disabled {
2022-11-15 19:53:24 +00:00
color: ${(props) => props.theme.codeInput.disabledColor};
background: ${(props) => props.theme.codeInput.disabledBackground};
border: ${(props) => props.theme.codeInput.disabledBorder};
2022-02-07 05:00:20 +00:00
outline: none;
2022-02-03 11:08:45 +00:00
}
2022-02-02 21:57:47 +00:00
hr {
width: 24px;
height: 1px;
background: ${(props) => props.theme.codeInput.lineColor};
2022-02-02 21:57:47 +00:00
border: none;
margin: 0 16px;
@media ${mobile} {
2022-02-02 21:57:47 +00:00
margin: 0 4px;
}
}
2023-06-14 07:25:59 +00:00
:placeholder-shown {
direction: ltr;
}
2022-02-02 21:57:47 +00:00
`;
InputWrapper.defaultProps = { theme: Base };
2022-02-02 21:57:47 +00:00
export default InputWrapper;