added css files to components
This commit is contained in:
parent
16e9f31e54
commit
a93c866163
@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
@ -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>
|
||||
);
|
||||
|
||||
@ -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
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