diff options
author | Sam Potts <sam@potts.es> | 2020-04-24 00:32:16 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2020-04-24 00:32:16 +1000 |
commit | 3b521f73bd773dcb530746db47c90dbb1349b70b (patch) | |
tree | 371bb120c654d55d0016792b9412fc122735c1b8 /demo/src/sass/layout/grid.scss | |
parent | 27126b20bc5d2a3a8947c363d1f1887533f69688 (diff) | |
parent | 68137aa789b195b26d4306eaebc7fee2f8eb3374 (diff) | |
download | plyr-3b521f73bd773dcb530746db47c90dbb1349b70b.tar.lz plyr-3b521f73bd773dcb530746db47c90dbb1349b70b.tar.xz plyr-3b521f73bd773dcb530746db47c90dbb1349b70b.zip |
Merge branch 'develop' of github.com:sampotts/plyr into develop
# Conflicts:
# package.json
# yarn.lock
Diffstat (limited to 'demo/src/sass/layout/grid.scss')
-rw-r--r-- | demo/src/sass/layout/grid.scss | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/demo/src/sass/layout/grid.scss b/demo/src/sass/layout/grid.scss index 40dd829e..fd3f8fdc 100644 --- a/demo/src/sass/layout/grid.scss +++ b/demo/src/sass/layout/grid.scss @@ -3,17 +3,17 @@ // ========================================================================== .grid { - margin: 0 auto; - padding: $spacing-base; + margin: 0 auto; + padding: $spacing-base; - @media only screen and (min-width: $screen-md) { - align-items: center; - display: flex; - max-width: $container-max-width; - width: 100%; + @media only screen and (min-width: $screen-md) { + align-items: center; + display: flex; + max-width: $container-max-width; + width: 100%; - > * { - flex: 1; - } + > * { + flex: 1; } + } } |