create(footer) created footer

This commit is contained in:
Yusuf İpek
2021-07-27 15:52:27 +03:00
parent 3399ece396
commit 55f7b9e9fb
7 changed files with 63 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
.footer {
display: flex;
justify-content: center;
background-color: var(--color-grey);
padding: 1.6rem;
&_text {
display: flex;
flex-direction: column;
text-align: center;
&-main {
font-size: 2rem;
}
&-secondary {
font-size: 1.6rem;
a {
color: var(--color-tertiary);
}
}
}
}
+3
View File
@@ -9,5 +9,8 @@
@import "./base/utilities";
@import "./components/navbar";
@import "./components/footer";
@import "./pages/homepage.scss";
@import url("https://fontlibrary.org//face/nunito-sans");
+3
View File
@@ -0,0 +1,3 @@
.homepage {
height: 90vh;
}