mirror of
https://github.com/ente-io/ente.git
synced 2025-06-03 07:49:45 +00:00
This reverts commit 5b17711b55e9e8995454121e3a209ee5e8c9b3c1, reversing changes made to 85bf3eebcb5ac197ce6a5901cbc8db1d03be0113.
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import { styled } from "@mui/material";
|
|
|
|
export const NavbarBase = styled("div")(
|
|
({ theme }) => `
|
|
flex: 0 0 64px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-bottom: 1px solid ${theme.vars.palette.divider};
|
|
`,
|
|
);
|