summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/groups.scss
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-10-04 11:03:07 +0100
committerPhil Hughes <me@iamphill.com>2016-10-04 11:03:07 +0100
commit2a6942abef10ab163a065600256cdbfa61ffdbf1 (patch)
tree371ae8899c0a010357bc47f20e05982592e7154e /app/assets/stylesheets/pages/groups.scss
parenta34c0e5490c78402b72fab7196d43352ff719cbb (diff)
parent4be63f5b5bd9c0859f5ba2b91ecdbdcc57b69b98 (diff)
downloadgitlab-ce-2a6942abef10ab163a065600256cdbfa61ffdbf1.tar.gz
Merge branch 'master' into members-ui
Diffstat (limited to 'app/assets/stylesheets/pages/groups.scss')
-rw-r--r--app/assets/stylesheets/pages/groups.scss47
1 files changed, 47 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/groups.scss b/app/assets/stylesheets/pages/groups.scss
index cc1c0249df3..edc9592f564 100644
--- a/app/assets/stylesheets/pages/groups.scss
+++ b/app/assets/stylesheets/pages/groups.scss
@@ -41,3 +41,50 @@
}
}
}
+
+.groups-header {
+ @media (min-width: $screen-sm-min) {
+ .nav-links {
+ width: 35%;
+ }
+
+ .nav-controls {
+ width: 65%;
+ }
+ }
+}
+
+.groups-empty-state {
+ padding: 50px 100px;
+ overflow: hidden;
+
+ @media (max-width: $screen-md-min) {
+ padding: 50px 0;
+ }
+
+ svg {
+ float: right;
+
+ @media (max-width: $screen-md-min) {
+ float: none;
+ display: block;
+ width: 250px;
+ position: relative;
+ left: 50%;
+ margin-left: -125px;
+ }
+ }
+
+ .text-content {
+ float: left;
+ width: 460px;
+ margin-top: 120px;
+
+ @media (max-width: $screen-md-min) {
+ float: none;
+ margin-top: 60px;
+ width: auto;
+ text-align: center;
+ }
+ }
+}