aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/@next/components/layout.tsx22
1 files changed, 11 insertions, 11 deletions
diff --git a/packages/website/ts/@next/components/layout.tsx b/packages/website/ts/@next/components/layout.tsx
index 355f32b6c..b337a6e58 100644
--- a/packages/website/ts/@next/components/layout.tsx
+++ b/packages/website/ts/@next/components/layout.tsx
@@ -2,29 +2,29 @@ import * as React from 'react';
import styled from 'styled-components';
interface WrapWidths {
- default: string,
- full: string,
- medium: string,
- narrow: string,
- [key: string]: string,
+ default: string;
+ full: string;
+ medium: string;
+ narrow: string;
+ [key: string]: string;
}
interface ColumnWidths {
- [key: string]: string,
+ [key: string]: string;
}
interface SectionProps {
- noPadding?: any,
- bgColor?: string,
+ noPadding?: any;
+ bgColor?: string;
}
interface WrapProps {
- width?: 'default' | 'full' | 'medium' | 'narrow',
- bgColor?: string,
+ width?: 'default' | 'full' | 'medium' | 'narrow';
+ bgColor?: string;
}
interface ColumnProps {
- colWidth?: '1/4' | '1/3' | '1/2' | '2/3',
+ colWidth?: '1/4' | '1/3' | '1/2' | '2/3';
}
const GUTTER = 30 as number;