Skip to content

Commit

Permalink
fix: color appsbar
Browse files Browse the repository at this point in the history
  • Loading branch information
arrofirezasatria committed Dec 26, 2022
1 parent 99faf2e commit 1beb857
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/components/AppsBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { yaleBlue } from "@modules/brandingTheme";

const link = [
{ title: "Home", link: "/about" },
{ title: "log", link: "/blog" },
{ title: "About", link: "/blog" },
];

export default function AppsBar() {
Expand Down Expand Up @@ -54,16 +54,31 @@ export default function AppsBar() {
component="nav"
sx={{
display: "flex",
backgroundColor: "white",
backgroundColor: "#F5F5F5",
width: "100%",
overflow: "hidden",
flexGrow: 1,
gap: 4,
"& ul": {
listStyleType: "none",
padding: 0,
margin: 0,
"& li": {
display: "flex",
float: "left",
my: 1,
ml: 1,
mr: 0,
p: 1,
px: 1.5,
// backgroundColor: "lightGray",
borderRadius: "8px",
"& a": {
color: "gray",
fontSize: "14px",
fontFamily: "Rubik",
textDecoration: "none",
},
},
},
}}
Expand Down

0 comments on commit 1beb857

Please sign in to comment.