-
{valueSpot}
-
{symbol}
+
-
diff --git a/src/index.css b/src/index.css
index 947e619..f94ce9b 100644
--- a/src/index.css
+++ b/src/index.css
@@ -3,13 +3,16 @@
@tailwind utilities;
:root {
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
- line-height: 1.5;
+ font-family: Poppins, system-ui, Avenir, Helvetica, Arial, sans-serif;
+ line-height: 22.4px;
font-weight: 400;
+ font-size: 16px;
+ color: black;
+ margin: 0 auto;
+ text-align: center;
color-scheme: light dark;
- color: rgba(255, 255, 255, 0.87);
- background-color: #242424;
+ background-color: #1a1a1a !important;
font-synthesis: none;
text-rendering: optimizeLegibility;
@@ -17,15 +20,6 @@
-moz-osx-font-smoothing: grayscale;
}
-a {
- font-weight: 500;
- color: #646cff;
- text-decoration: inherit;
-}
-a:hover {
- color: #535bf2;
-}
-
body {
margin: 0;
display: flex;
@@ -34,28 +28,19 @@ body {
min-height: 100vh;
}
-h1 {
- font-size: 3.2em;
- line-height: 1.1;
+.headline {
+ margin: 5px;
+ font-weight: 600;
+ font-size: 20px;
+ line-height: 33.6px;
+ color: #273f44;
}
-button {
- border-radius: 8px;
- border: 1px solid transparent;
- padding: 0.6em 1.2em;
- font-size: 1em;
- font-weight: 500;
- font-family: inherit;
- background-color: #1a1a1a;
- cursor: pointer;
- transition: border-color 0.25s;
-}
-button:hover {
- border-color: #646cff;
-}
-button:focus,
-button:focus-visible {
- outline: 4px auto -webkit-focus-ring-color;
+.components-container {
+ display: flex;
+ flex-direction: column;
+ height: 100%;
+ width: 100%;
}
@media (prefers-color-scheme: light) {
diff --git a/tailwind.config.js b/tailwind.config.js
index 128382c..fd448b5 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,8 +1,25 @@
/** @type {import('tailwindcss').Config} */
export default {
- content: ['./src/**/*.{js,jsx,ts,tsx}'],
+ content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
- extend: {},
+ extend: {
+ boxShadow: {
+ 'custom-white': '0px 0px 4px 10px rgba(255, 255, 255, 0.2)',
+ },
+ colors: {
+ customGreen: '#273f44',
+ customGrayText: '#888a8c',
+ customBlue: '#aadaf1',
+ customGraySkip: '#888A8C',
+ customBlueButton: '#007aff',
+ customGrayAddress: '#707579',
+ customGrayWallet: '#efeff4',
+ customBlackText: '#212121',
+ },
+ gridTemplateColumns: {
+ 'custom-1-3-1': '1fr 3fr 1fr',
+ },
+ },
},
plugins: [],
};