summaryrefslogtreecommitdiffstats
path: root/reporting/3rd_party/sass/layout/_wrapper.scss
diff options
context:
space:
mode:
Diffstat (limited to 'reporting/3rd_party/sass/layout/_wrapper.scss')
-rw-r--r--reporting/3rd_party/sass/layout/_wrapper.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/reporting/3rd_party/sass/layout/_wrapper.scss b/reporting/3rd_party/sass/layout/_wrapper.scss
new file mode 100644
index 0000000..62ee174
--- /dev/null
+++ b/reporting/3rd_party/sass/layout/_wrapper.scss
@@ -0,0 +1,26 @@
+///
+/// Phantom by HTML5 UP
+/// html5up.net | @ajlkn
+/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+///
+
+/* Wrapper */
+
+ #wrapper {
+ > * {
+ > .inner {
+ $gutter: _size(gutter);
+
+ width: 100%;
+ max-width: _size(inner);
+ margin: 0 auto;
+ padding: 0 $gutter;
+
+ @include breakpoint(small) {
+ $gutter: _size(gutter) * 0.5;
+
+ padding: 0 $gutter;
+ }
+ }
+ }
+ } \ No newline at end of file