Skip to content

Commit

Permalink
minor adjustments to ui
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Nov 27, 2023
1 parent 7e6b11e commit 7eab6ca
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
4 changes: 2 additions & 2 deletions apps/connect/src/components/atoms/Background.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from "@mui/material/styles/styled";
import Glow from "./Glow";
import Elipsis from "./Elipsis";
import PoweredBy from "./PoweredBy";
import BuiltBy from "./BuiltBy";
import Version from "./Version";

const Container = styled("div")(() => ({
Expand All @@ -28,7 +28,7 @@ export default function Background({
<Container>
{children}
<ContainerFooter>
<PoweredBy />
<BuiltBy />
<Version />
<Glow
position={{
Expand Down
6 changes: 6 additions & 0 deletions apps/connect/src/components/atoms/BuiltBy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Footer from "./Footer"

export default function BuiltBy() {
return <Footer right="120px">Built by xLabs</Footer>
}

11 changes: 10 additions & 1 deletion apps/connect/src/components/atoms/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ import styled from "@mui/material/styles/styled";
import Box from "@mui/material/Box";
import portal from "../../assets/imgs/logo-white.svg";
import MenuIcon from "@mui/icons-material/Menu";
import List from "@mui/material/List";
import MuiListItem from "@mui/material/ListItem";
import ListItemButton from "@mui/material/ListItemButton";
import ListItemText from "@mui/material/ListItemText";

import { useState } from "react";
import { List, ListItem, ListItemButton, ListItemText } from "@mui/material";

const AppBar = styled(MuiAppBar)(({ theme }) => ({
background: "transparent",
Expand All @@ -21,6 +25,11 @@ const AppBar = styled(MuiAppBar)(({ theme }) => ({
boxShadow: "none",
}));

const ListItem = styled(MuiListItem)(() => ({
paddingTop: 0,
paddingBottom: 0,
}));

const Link = styled(MuiLink)(({ theme }) => ({
...theme.typography.body2,
fontSize: "14px",
Expand Down
6 changes: 0 additions & 6 deletions apps/connect/src/components/atoms/PoweredBy.tsx

This file was deleted.

0 comments on commit 7eab6ca

Please sign in to comment.