Skip to content

Commit

Permalink
Updated Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
CEbbinghaus committed Sep 13, 2024
1 parent 5d1e400 commit daf931a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ function Content() {
<div>
<h3 style={{margin: "0px"}}>Check out the new Docs!</h3>
Open them using
<div style={{backgroundColor: "black", borderRadius: "100px"}}>
<GiHamburgerMenu />
<div style={{display: "inline-block", marginLeft: ".2em"}}>
<div style={{backgroundColor: "black", borderRadius: "100px", display: "flex", justifyContent: "center", width: "40px"}}>
<GiHamburgerMenu />
</div>
</div>
</div>
<DialogCheckbox onChange={setDismissDocs} label="Don't remind me again" />
Expand All @@ -118,7 +120,7 @@ function Content() {
}

return (
<>
<div style={{scrollPadding: "48px 0px" }}>
<Focusable onMenuActionDescription='Open Docs' onMenuButton={() => { Navigation.CloseSideMenus(); Navigation.Navigate(DOCUMENTATION_PATH); }}>
{docs_card}
<div style={{ margin: "5px", marginTop: "0px" }}>
Expand Down Expand Up @@ -147,7 +149,7 @@ function Content() {
)}
</PanelSection>
</Focusable>
</>
</div>
);
};

Expand Down

0 comments on commit daf931a

Please sign in to comment.