added css files to components
This commit is contained in:
parent
16e9f31e54
commit
a93c866163
@ -1,11 +1,12 @@
|
|||||||
/* ----- Project Imports ----- */
|
/* ----- Project Imports ----- */
|
||||||
|
import "@/styles/details.css";
|
||||||
|
|
||||||
|
|
||||||
function Details() {
|
function Details() {
|
||||||
return (
|
return (
|
||||||
<article className="detailsContainer">
|
<article className="detailsContainer">
|
||||||
<p>This be some details</p>
|
<p>This be some details</p>
|
||||||
|
<a href="#projects">Projects</a>
|
||||||
</article>
|
</article>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
/* ----- Project Imports ----- */
|
/* ----- Project Imports ----- */
|
||||||
|
import "@/styles/projects.css";
|
||||||
|
|
||||||
|
|
||||||
function Projects() {
|
function Projects() {
|
||||||
return (
|
return (
|
||||||
<article className="projectsContainer">
|
<article className="projectsContainer">
|
||||||
|
<h2 id="projects">This is projects area title</h2>
|
||||||
<p>This be some projects</p>
|
<p>This be some projects</p>
|
||||||
</article>
|
</article>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
.contentContainer {
|
.contentContainer {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
background: linear-gradient(109.6deg, rgb(0, 0, 0) 11.2%, rgb(11, 132, 145) 91.1%);
|
background: linear-gradient(109.6deg, rgb(0, 0, 0) 11.2%, rgb(11, 132, 145) 91.1%);
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
4
src/styles/details.css
Normal file
4
src/styles/details.css
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.detailsContainer {
|
||||||
|
padding: 3rem;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
4
src/styles/projects.css
Normal file
4
src/styles/projects.css
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.projectsContainer {
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 3rem;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user