diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-11-22 19:45:49 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-11-22 20:02:20 +0000 |
commit | 5413bf0426917846ed49bfa556ec46dd09a8cd3a (patch) | |
tree | daabdc897fc025b471f1485d72375271b14fc82b /app/assets | |
parent | 3c1f968369c5015810562c5cdbd977bdb5c7fa11 (diff) | |
download | gitlab-ce-5413bf0426917846ed49bfa556ec46dd09a8cd3a.tar.gz |
Adds empty states and barebones for the table
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/framework/blocks.scss | 9 | ||||
-rw-r--r-- | app/assets/stylesheets/framework/common.scss | 8 |
2 files changed, 8 insertions, 9 deletions
diff --git a/app/assets/stylesheets/framework/blocks.scss b/app/assets/stylesheets/framework/blocks.scss index 91976ca1f56..17096e25207 100644 --- a/app/assets/stylesheets/framework/blocks.scss +++ b/app/assets/stylesheets/framework/blocks.scss @@ -348,12 +348,3 @@ } } } - -.flex-container-block { - display: -webkit-flex; - display: flex; -} - -.flex-right { - margin-left: auto; -} diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss index 5e4ddf366ef..4316b1e87ae 100644 --- a/app/assets/stylesheets/framework/common.scss +++ b/app/assets/stylesheets/framework/common.scss @@ -454,3 +454,11 @@ img.emoji { .inline { display: inline-block; } .center { text-align: center; } .vertical-align-middle { vertical-align: middle; } + +.flex-justify-content-center { justify-content: center; } +.flex-wrap { flex-wrap: wrap; } +.flex-right { margin-left: auto; } +.flex-container-block { + display: -webkit-flex; + display: flex; +} |