Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .bitmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* THIS IS A BIT-AUTO-GENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. */

/**
* The Bitmap file is an auto generated file used by Bit to track all your Bit components. It maps the component to a folder in your file system.
* This file should be committed to VCS(version control).
* Components are listed using their component ID (https://bit.dev/docs/components/component-id).
* If you want to delete components you can use the "bit remove <component-id>" command.
* See the docs (https://bit.dev/docs/components/removing-components) for more information, or use "bit remove --help".
*/

{
"$schema-version": "15.0.0"
}
5,155 changes: 2,452 additions & 2,703 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"antd": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^16.13.1",
"react-scripts": "5.0.1",
"styled-components": "^5.3.9",
"web-vitals": "^2.1.4"
},
"scripts": {
Expand Down
14,998 changes: 14,998 additions & 0 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

18 changes: 17 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R6M3PRGD7C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-R6M3PRGD7C');
</script>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand All @@ -25,9 +34,14 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<head>

<!-- other head elements -->

</head>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>

<div id="root"></div>
<!--
This HTML file is a template.
Expand All @@ -39,5 +53,7 @@
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->


</body>
</html>
91 changes: 26 additions & 65 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,15 @@ body {
left:-100px;
}

.test {
box-sizing: border-box;
width: 100%;
height: 10px;
border: 2px solid black;
}

.black {

justify-content: space-between;
align-items: center;

position: absolute;
z-index: 1;
width: 100%;
width: 20px;
height: 64px;
left: 0px;
top: 0px;
Expand Down Expand Up @@ -88,6 +83,7 @@ flex: none;
order: 1;
flex-grow: 0;
}

.image {
width: 1204px;
height: 196px;
Expand All @@ -109,7 +105,7 @@ top: 76px;
height: 24px;
left: 24px;

top: 354px;
top: 370px;


font-style: normal;
Expand Down Expand Up @@ -199,18 +195,18 @@ height: 40px;
left: 748px;


top: 413px;
top: 403px;

margin-left: 29px;


border-radius: 0px;




/* Blue / blue-5 */

background: #379FFF;

}
.button{

Expand All @@ -231,82 +227,37 @@ line-height: 22px;
display: flex;
align-items: center;
text-align: center;
background-color: transparent;
border: transparent;



/* Grey/grey-1 */

color: #FFFFFF;
background-color: #379FFF;
}
.card {
box-sizing: border-box;


position: absolute;
left: 24px;
left: 0px;


top: 460px;

height: 388px;





width: 100%;
display: flex;














margin-top: 25px;
flex: none;
order: 1;
flex-grow: 0;
position:absolute;


/* Grey/grey-1 */

background: #FFFFFF;

/* Grey/grey-5

Border
*/
border: 1px solid #D8DDE6;
border-radius: 2px;
}
.cardhead{
margin-top: -4px;
position: absolute;
height: 24px;
left: 24px;
right: 67px;
top: 16px;


font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
/* identical to box height, or 150% */

background: #FFFFFF;
/* Grey / grey-9 */

color: #506080;
}


::placeholder {
position: absolute;
height: 24px;
Expand Down Expand Up @@ -453,6 +404,16 @@ input::-webkit-inner-spin-button {
}

/* Firefox */
input[type=number] {
-moz-appearance: textfield;


Title {
color: red;
}

.img {
position: absolute;
}

.ant-layout-header {
width: 100%;
}
Loading