mirror of
https://github.com/DerTyp7/dertyp7.github.io.git
synced 2025-11-02 06:32:32 +01:00
Add Footer component to App.tsx
This commit is contained in:
48
src/styles/Footer.scss
Normal file
48
src/styles/Footer.scss
Normal file
@@ -0,0 +1,48 @@
|
||||
.footer {
|
||||
border-top: 1px solid var(--color-border);
|
||||
padding: 1rem 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
|
||||
.contact {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
gap: 20px;
|
||||
|
||||
svg {
|
||||
color: var(--color-font-muted);
|
||||
transition: all 50ms ease-in-out;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
color: var(--color-font);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.source {
|
||||
color: var(--color-font-muted);
|
||||
font-size: 0.8rem;
|
||||
margin-top: 10px;
|
||||
a {
|
||||
color: var(--color-font-muted);
|
||||
transition: all 50ms ease-in-out;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
color: var(--color-font);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.copyright {
|
||||
color: var(--color-font-muted);
|
||||
font-size: 0.8rem;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user