init project files
This commit is contained in:
43
components/layout/Footer.module.scss
Normal file
43
components/layout/Footer.module.scss
Normal file
@@ -0,0 +1,43 @@
|
||||
.footer {
|
||||
border-top: 1px solid var(--border);
|
||||
background: var(--bg-2);
|
||||
}
|
||||
|
||||
.container {
|
||||
@include container;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-block: 1.25rem;
|
||||
}
|
||||
|
||||
.copy {
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-3);
|
||||
}
|
||||
|
||||
.links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.footerLink {
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-3);
|
||||
transition: color var(--transition);
|
||||
|
||||
&:hover {
|
||||
color: var(--accent);
|
||||
}
|
||||
}
|
||||
|
||||
.back {
|
||||
font-size: 1.25rem;
|
||||
color: var(--text-2);
|
||||
transition: color var(--transition);
|
||||
|
||||
&:hover {
|
||||
color: var(--accent);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user