From 12bcc56a785d7a29a37b6d80d1b24bc26838f84e Mon Sep 17 00:00:00 2001 From: Zion Dials Date: Sun, 6 Oct 2019 10:09:42 -0400 Subject: [PATCH] Update README.md Added breakpoint, column, and row information. --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 7a20112..7e5c284 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,24 @@ class App extends React.Component { } } ``` +### Columns + +Each `Row` within a grid consists of 12 `Col`. + +### Breakpoints + +Here are the breakpoints for each viewport. + +- `xs` + - Width < `576px` +- `sm` + - Width ≥ `576px` +- `md` + - Width ≥`768px` +- `lg` + - Width ≥ `992px` +- `xl` + - Width ≥`1200px` ### Gotcha