Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,23 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html
lang="en"
style={{ backgroundColor: "rgb(155, 79, 202)", height: "100%" }}
>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="canonical" href="https://www.arena-mixer.com/" />
</head>
<body>
<body
style={{
backgroundColor: "rgb(155, 79, 202)",
margin: 0,
padding: 0,
height: "100%",
minHeight: "100vh",
}}
>
<Providers>
<Main>
<Layout>{children}</Layout>
Expand Down
5 changes: 5 additions & 0 deletions src/styles/BlocksExplorer.module.sass
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@
justify-content: center
grid-template-columns: repeat(auto-fill, minmax(280px,280px))
grid-gap: 15px

@media screen and (max-width: 768px)
grid-template-columns: repeat(2, 1fr)
margin: 0 10px
grid-gap: 10px
8 changes: 8 additions & 0 deletions src/styles/Global.sass
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,18 @@
html
max-width: 100vw
background-color: var(--color_purple)
height: 100%

font-family: "Helvetica Neue", Helvetica, sans-serif
font-size: 13px

body
background-color: var(--color_purple)
color: var(--color_text)
height: 100%
margin: 0
padding: 0

a
color: inherit
text-decoration: none