kopia lustrzana https://github.com/bugout-dev/moonstream
commit
849ce50bde
|
@ -6,7 +6,7 @@ import { getLayout, getLayoutProps } from "../../src/layouts/InfoPageLayout";
|
||||||
const Status = () => {
|
const Status = () => {
|
||||||
const healthyStatusText = "Available";
|
const healthyStatusText = "Available";
|
||||||
const downStatusText = "Unavailable";
|
const downStatusText = "Unavailable";
|
||||||
const healthyStatusColor = "green.900";
|
const healthyStatusColor = "green.1000";
|
||||||
const downStatusColor = "red.600";
|
const downStatusColor = "red.600";
|
||||||
|
|
||||||
const { serverListStatusCache } = useStatus();
|
const { serverListStatusCache } = useStatus();
|
||||||
|
|
|
@ -10,7 +10,7 @@ const Papers = () => {
|
||||||
Whitepapers
|
Whitepapers
|
||||||
</Heading>
|
</Heading>
|
||||||
<Link
|
<Link
|
||||||
color="orange.900"
|
color="orange.1000"
|
||||||
href="https://github.com/bugout-dev/moonstream/blob/main/datasets/nfts/papers/ethereum-nfts.pdf"
|
href="https://github.com/bugout-dev/moonstream/blob/main/datasets/nfts/papers/ethereum-nfts.pdf"
|
||||||
>
|
>
|
||||||
An analysis of 7,020,950 NFT transactions on the Ethereum blockchain -
|
An analysis of 7,020,950 NFT transactions on the Ethereum blockchain -
|
||||||
|
|
|
@ -28,7 +28,8 @@ const Scrollable = (props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const navbar = document.getElementById("Navbar");
|
const navbar = document.getElementById("Navbar");
|
||||||
if (dir === -1) {
|
|
||||||
|
if (dir === -1 && e.target.scrollTop > 0) {
|
||||||
navbar.style.top = `${-navbar.offsetHeight}px`;
|
navbar.style.top = `${-navbar.offsetHeight}px`;
|
||||||
} else {
|
} else {
|
||||||
navbar.style.top = "-0";
|
navbar.style.top = "-0";
|
||||||
|
|
|
@ -27,9 +27,8 @@ export default function SocialProfileSimple({
|
||||||
maxW={"320px"}
|
maxW={"320px"}
|
||||||
h="420px"
|
h="420px"
|
||||||
w={"full"}
|
w={"full"}
|
||||||
bg={useColorModeValue("white.50", "gray.900")}
|
borderRadius="20px"
|
||||||
boxShadow={"2xl"}
|
border="1px solid white"
|
||||||
rounded={"lg"}
|
|
||||||
p={6}
|
p={6}
|
||||||
textAlign={"center"}
|
textAlign={"center"}
|
||||||
>
|
>
|
||||||
|
@ -56,7 +55,7 @@ export default function SocialProfileSimple({
|
||||||
<Heading fontSize={"2xl"} fontFamily={"body"}>
|
<Heading fontSize={"2xl"} fontFamily={"body"}>
|
||||||
{name}
|
{name}
|
||||||
</Heading>
|
</Heading>
|
||||||
<Text fontWeight={600} color={"gray.900"} mb={4}>
|
<Text fontWeight={600} color={"blue.850"} mb={4}>
|
||||||
{atName}
|
{atName}
|
||||||
</Text>
|
</Text>
|
||||||
<Text textAlign={"center"} px={3}>
|
<Text textAlign={"center"} px={3}>
|
||||||
|
|
Ładowanie…
Reference in New Issue