added css files to components

This commit is contained in:
II-Paulus-II 2024-03-03 16:28:47 +00:00
parent 16e9f31e54
commit a93c866163
5 changed files with 13 additions and 2 deletions

View File

@ -1,11 +1,12 @@
/* ----- Project Imports ----- */
import "@/styles/details.css";
function Details() {
return (
<article className="detailsContainer">
<p>This be some details</p>
<a href="#projects">Projects</a>
</article>
);
};

View File

@ -1,10 +1,11 @@
/* ----- Project Imports ----- */
import "@/styles/projects.css";
function Projects() {
return (
<article className="projectsContainer">
<h2 id="projects">This is projects area title</h2>
<p>This be some projects</p>
</article>
);

View File

@ -1,5 +1,6 @@
.contentContainer {
display: flex;
flex-direction: column;
background: linear-gradient(109.6deg, rgb(0, 0, 0) 11.2%, rgb(11, 132, 145) 91.1%);
min-height: 100%;
}

4
src/styles/details.css Normal file
View File

@ -0,0 +1,4 @@
.detailsContainer {
padding: 3rem;
min-height: 100vh;
}

4
src/styles/projects.css Normal file
View File

@ -0,0 +1,4 @@
.projectsContainer {
min-height: 100vh;
padding: 3rem;
}