diff --git a/client/src/assets/styles/global/_typography.scss b/client/src/assets/styles/global/_typography.scss index b5d70457..26be1b3b 100644 --- a/client/src/assets/styles/global/_typography.scss +++ b/client/src/assets/styles/global/_typography.scss @@ -45,4 +45,4 @@ a { .small { font-size: 0.8rem; font-weight: 400; -} +} \ No newline at end of file diff --git a/client/src/assets/styles/global/global.scss b/client/src/assets/styles/global/global.scss index 2ddba2b7..eb5109fb 100644 --- a/client/src/assets/styles/global/global.scss +++ b/client/src/assets/styles/global/global.scss @@ -19,4 +19,22 @@ body { a { color: var(--text-color); text-decoration: none; +} + +textarea { + width: 90%; + height: 10rem; + + border-radius: 4px; + border: 1px solid var(--grey-600, #4B5563); + background-color: var(--grey-700, #374151); + + direction: rtl; + + color: var(--grey-100, #9CA3AF); + padding: 10px 10px; + + font-size: 1rem; + font-weight: 500; + } \ No newline at end of file diff --git a/client/src/components/landingpage/LandingPage.jsx b/client/src/components/landingpage/LandingPage.jsx index 873a96e7..de82f540 100644 --- a/client/src/components/landingpage/LandingPage.jsx +++ b/client/src/components/landingpage/LandingPage.jsx @@ -8,6 +8,7 @@ import "./LandingPage.scss"; import TestTable from "../testing/TestTable"; + import { FolderIcon, AcademicCapIcon, @@ -84,6 +85,7 @@ export default function LandingPage() { {/* uncomment to test statistics Table */} {/* */} + ); }