From 23e1d2139427869ac521580ce32008ea840f9b02 Mon Sep 17 00:00:00 2001 From: HerrHase Date: Thu, 5 Aug 2021 09:21:50 +0200 Subject: [PATCH] adding #22 --- src/scss/core/_container.scss | 14 ++++++++++++++ src/scss/plain-ui.scss | 1 + 2 files changed, 15 insertions(+) create mode 100644 src/scss/core/_container.scss diff --git a/src/scss/core/_container.scss b/src/scss/core/_container.scss new file mode 100644 index 0000000..54af272 --- /dev/null +++ b/src/scss/core/_container.scss @@ -0,0 +1,14 @@ +/** + * Container + * + * + * @author Björn Hase, Tentakelfabrik + * @license http://opensource.org/licenses/MIT The MIT License + * @link https://github.com/tentakelfabrik/crispy-css + * + */ + +.container--app { + max-width: 100%; + padding: 15px 30px; +} \ No newline at end of file diff --git a/src/scss/plain-ui.scss b/src/scss/plain-ui.scss index b74c40b..542f1a1 100644 --- a/src/scss/plain-ui.scss +++ b/src/scss/plain-ui.scss @@ -7,6 +7,7 @@ 'mixins', 'variables', + 'core/container', 'core/normalize', 'core/content', 'core/heading',