Skip to content

Commit

Permalink
Merge pull request #38 from CMP26Projects/textArea
Browse files Browse the repository at this point in the history
text area style finished
  • Loading branch information
amir-kedis authored Dec 26, 2023
2 parents 8e7402e + 9fe4868 commit b4611ae
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/assets/styles/global/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ a {
.small {
font-size: 0.8rem;
font-weight: 400;
}
}
18 changes: 18 additions & 0 deletions client/src/assets/styles/global/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;

}
2 changes: 2 additions & 0 deletions client/src/components/landingpage/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "./LandingPage.scss";

import TestTable from "../testing/TestTable";


import {
FolderIcon,
AcademicCapIcon,
Expand Down Expand Up @@ -84,6 +85,7 @@ export default function LandingPage() {

{/* uncomment to test statistics Table */}
{/* <TestTable /> */}

</div>
);
}

0 comments on commit b4611ae

Please sign in to comment.