This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"0", | |
"400", | |
"401", | |
"402", | |
"403", | |
"404", | |
"405", | |
"406", | |
"407", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.header__link { | |
justify-content: center; | |
} | |
.header__img:hover { | |
opacity: 0.75; | |
} | |
.contents .pagelink:hover { | |
background-color: transparent; | |
opacity: 0.75; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, createContext, useContext, useEffect } from "react"; | |
import { Dimensions } from "react-native"; | |
type ScreenSizeContextType = { | |
windowWidth: number; | |
windowHeight: number; | |
}; | |
export const ScreenSizeContext = createContext<ScreenSizeContextType>({ | |
windowWidth: Dimensions.get("window").width, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.notion-callout { | |
border-radius: 100px !important; | |
position: relative !important; | |
padding: 16px 24px !important; | |
border: none !important; | |
} | |
.notion-callout.notion-purple_background_co { | |
box-shadow: 0 10px 20px -10px #8c51be !important; | |
background: #6441A5 !important; | |
} |
OlderNewer