fix & style: change some colors and apply z-index for header, so it will be on top of everything

This commit is contained in:
GivFNZ 2025-03-22 20:20:54 -03:00
parent 85b36bfaf8
commit 6a29989763
No known key found for this signature in database
GPG Key ID: 63DD92181B575322
7 changed files with 8 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "givs-website-react", "name": "givs-website-react",
"private": true, "private": true,
"version": "1.3.0", "version": "1.3.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -2,7 +2,7 @@ export default function Footer() {
return ( return (
<footer> <footer>
<p>© 2025 GivFNZ</p> <p>© 2025 GivFNZ</p>
<p>Version: 1.3.0</p> <p>Version: 1.3.1</p>
</footer> </footer>
) )
} }

View File

@ -41,6 +41,7 @@ export const HeaderContainer = styled.div`
height: 70px; height: 70px;
background-color: ${props => props.theme["green-400"]}; background-color: ${props => props.theme["green-400"]};
color: ${props => props.theme.white}; color: ${props => props.theme.white};
z-index: 1;
nav { nav {
display: flex; display: flex;

View File

@ -9,6 +9,7 @@ export const IconContainer = styled.div`
export const IconLink = styled.a` export const IconLink = styled.a`
color: ${props => props.theme["light-cream"]}; color: ${props => props.theme["light-cream"]};
transition: color 0.3s; transition: color 0.3s;
text-decoration: none;
&:hover { &:hover {
color: ${props => props.theme["cream"]}; color: ${props => props.theme["cream"]};

View File

@ -3,6 +3,7 @@ import { MainContainer } from "../../components/MainContent/styles";
import { useQuery } from '@tanstack/react-query' import { useQuery } from '@tanstack/react-query'
import { Paragraph } from "../../components/Paragraph/styles"; import { Paragraph } from "../../components/Paragraph/styles";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { IconLink } from "../home/styles";
export default function Music() { export default function Music() {
@ -16,7 +17,7 @@ export default function Music() {
<h1>{t("myLast")}</h1> <h1>{t("myLast")}</h1>
<h3>{t("myLastDescription")}</h3> <h3>{t("myLastDescription")}</h3>
<Paragraph>{lastResponse?.recenttracks?.track[0].name} - {lastResponse?.recenttracks?.track[0].artist["#text"]}</Paragraph> <Paragraph>{lastResponse?.recenttracks?.track[0].name} - {lastResponse?.recenttracks?.track[0].artist["#text"]}</Paragraph>
<a target="blank" href={lastResponse?.recenttracks?.track[0].url}>{t("lastLink")}</a> <IconLink target="blank" href={lastResponse?.recenttracks?.track[0].url}>{t("lastLink")}</IconLink>
<Paragraph>Last update: {lastResponse?.recenttracks?.track[0]?.date["#text"]} UTC</Paragraph> <Paragraph>Last update: {lastResponse?.recenttracks?.track[0]?.date["#text"]} UTC</Paragraph>
</MainContainer> </MainContainer>
) )

View File

@ -16,7 +16,7 @@ export const ProjectGrid = styled.div`
`; `;
export const ProjectCard = styled.a` export const ProjectCard = styled.a`
background: ${props => props.theme["green-400"]}; background: ${props => props.theme["green-500"]};
padding: 1.5rem; padding: 1.5rem;
border-radius: 8px; border-radius: 8px;
text-decoration: none; text-decoration: none;

View File

@ -67,7 +67,7 @@ p {
} }
.bgb { .bgb {
background-color: ${props => props.theme["dark-cream"]}; background-color: ${props => props.theme["gray-600"]};
color: ${props => props.theme.white}; color: ${props => props.theme.white};
border: none; border: none;
&:focus { &:focus {