mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2025-12-06 09:34:07 +00:00
formatting
This commit is contained in:
parent
41c3f26829
commit
9894a0da59
@ -2,10 +2,24 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png">
|
<link
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png">
|
rel="apple-touch-icon"
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png">
|
sizes="180x180"
|
||||||
<meta name="theme-color" content="#ffffff">
|
href="%PUBLIC_URL%/apple-touch-icon.png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="icon"
|
||||||
|
type="image/png"
|
||||||
|
sizes="32x32"
|
||||||
|
href="%PUBLIC_URL%/favicon-32x32.png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="icon"
|
||||||
|
type="image/png"
|
||||||
|
sizes="16x16"
|
||||||
|
href="%PUBLIC_URL%/favicon-16x16.png"
|
||||||
|
/>
|
||||||
|
<meta name="theme-color" content="#ffffff" />
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta
|
<meta
|
||||||
|
|||||||
@ -11,13 +11,13 @@ const Navbar = () => {
|
|||||||
return (
|
return (
|
||||||
<nav className={styles.navbar_wrapper}>
|
<nav className={styles.navbar_wrapper}>
|
||||||
<StyledNavLink path="/" text="Home" />
|
<StyledNavLink path="/" text="Home" />
|
||||||
|
<StyledNavLink path="/graph" text="Graph" />
|
||||||
|
<StyledNavLink path="/about" text="About" />
|
||||||
{
|
{
|
||||||
auth === true ?
|
auth === true ?
|
||||||
<StyledNavLink path="/logout" text="Logout" /> :
|
<StyledNavLink path="/logout" text="Logout" /> :
|
||||||
<StyledNavLink path="/login" text="Login" />
|
<StyledNavLink path="/login" text="Login" />
|
||||||
}
|
}
|
||||||
<StyledNavLink path="/graph" text="Graph" />
|
|
||||||
<StyledNavLink path="/about" text="About" />
|
|
||||||
</nav>
|
</nav>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -92,9 +92,9 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: var(--primaryFont),-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
font-family: var(--primaryFont), -apple-system, BlinkMacSystemFont, "Segoe UI",
|
||||||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
"Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
||||||
sans-serif;
|
"Helvetica Neue", sans-serif;
|
||||||
font-size: var(--normalFontSize);
|
font-size: var(--normalFontSize);
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
background-color: var(--bgBlue);
|
background-color: var(--bgBlue);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user