search sscreen

This commit is contained in:
2024-05-04 12:32:19 +03:00
parent 3652b99f4c
commit bb49021fb8
14 changed files with 696 additions and 46 deletions
+21
View File
@@ -0,0 +1,21 @@
import styled from "@emotion/styled";
export const FieldWrapper = styled.div`
display: flex;
flex-direction: column;
`;
export const FieldLabel = styled.label`
padding: 12px 0;
font-size: 24px;
`;
export const FieldInput = styled.input`
min-height: 24px;
border-width: 2px;
border-radius: 6px;
border-color: #3d3d3d;
border-style: solid;
padding: 6px 4px;
font-size: 16px;
`;