Skip to content

Commit

Permalink
Footer
Browse files Browse the repository at this point in the history
  • Loading branch information
mitjapotocin committed Oct 19, 2023
1 parent 42d8f0c commit 53c508b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Adapt from "@components/UiKit/Adapt";
import Button from "@components/UiKit/Button";
import device from "@styles/utils/breakpoints";
import config from "config.json";
import Link from "next/link";
import styled from "styled-components";
Expand All @@ -17,6 +18,12 @@ const LinksWrapper = styled.div`
row-gap: 40px;
margin-bottom: 40px;
@media ${device.S} {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 20px;
}
h3 {
font-size: 16px;
font-weight: 600;
Expand Down
5 changes: 5 additions & 0 deletions components/UiKit/Button.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import device from "@styles/utils/breakpoints";
import styled from "styled-components";

const Button = styled.button`
Expand All @@ -18,6 +19,10 @@ const Button = styled.button`
cursor: pointer;
z-index: 2;
@media ${device.S} {
font-size: 18px;
}
&:before {
content: "";
display: block;
Expand Down
1 change: 0 additions & 1 deletion pages/docs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { serialize } from "next-mdx-remote/serialize";
import MdContent from "@components/MdContent/MdContent";
import MainLayout from "@components/UiKit/MainLayout";
import styled from "styled-components";
import device from "@styles/utils/breakpoints";

export async function getStaticProps() {
const mdFiles = getAllMdFilesInDir(path.join("public", "docs"));
Expand Down

1 comment on commit 53c508b

@vercel
Copy link

@vercel vercel bot commented on 53c508b Oct 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

orange-web2 – ./

orange-web2-git-main-biolab.vercel.app
orange-web2-biolab.vercel.app
orange-web2.vercel.app

Please sign in to comment.