mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-07 16:06:12 +02:00
style: format codebase
This commit is contained in:
@@ -4,8 +4,8 @@ export const Main = styled.div`
|
||||
display: flex;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background: ${props => props.theme.main.background};
|
||||
color: ${props => props.theme.main.foreground};
|
||||
background: ${(props) => props.theme.main.background};
|
||||
color: ${(props) => props.theme.main.foreground};
|
||||
`
|
||||
|
||||
export const Overlay = styled.div`
|
||||
|
||||
@@ -16,7 +16,7 @@ interface IBaseLayout extends IPageContext {
|
||||
location: WindowLocation
|
||||
}
|
||||
|
||||
const BaseLayout: FC<IBaseLayout> = props => {
|
||||
const BaseLayout: FC<IBaseLayout> = (props) => {
|
||||
const ResolvedLayout = useMemo(() => {
|
||||
switch (props.pageContext.layout) {
|
||||
case "resources":
|
||||
|
||||
Reference in New Issue
Block a user