summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/labels.scss
diff options
context:
space:
mode:
authorArinde Eniola <eniolaarinde1@gmail.com>2016-04-02 22:54:22 +0100
committerArinde Eniola <eniolaarinde1@gmail.com>2016-04-06 20:27:30 +0100
commit02dcc4188c8816cd4363a98e60ae54309623ea6f (patch)
tree4bc02de51136100c62546c8d0089685ce2f9a458 /app/assets/stylesheets/pages/labels.scss
parent802c6e7bba0444ec5fa4757da30c21fd28a5ccbc (diff)
downloadgitlab-ce-02dcc4188c8816cd4363a98e60ae54309623ea6f.tar.gz
make the view responsive for extra small device
Diffstat (limited to 'app/assets/stylesheets/pages/labels.scss')
-rw-r--r--app/assets/stylesheets/pages/labels.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/labels.scss b/app/assets/stylesheets/pages/labels.scss
index 1d5d402ba04..e77d43fa29c 100644
--- a/app/assets/stylesheets/pages/labels.scss
+++ b/app/assets/stylesheets/pages/labels.scss
@@ -52,6 +52,10 @@
.label-name {
display: inline-block;
width: 21%;
+
+ @media (max-width: $screen-xs-min) {
+ display: block;
+ }
}
.label {
@@ -80,10 +84,21 @@
.prepend-left-10 {
display: inline-block;
width: 45%;
+
+ @media (max-width: $screen-xs-min) {
+ display: block;
+ width: 100%;
+ margin-left: 0px;
+ padding: 10px 0;
+ }
}
.pull-right {
+ @media (max-width: $screen-xs-min) {
+ float: none !important;
+ }
+
.action-buttons {
border-color: transparent;
margin: 7px;
@@ -97,6 +112,11 @@
a {
color: $gl-text-color;
}
+
+ @media (max-width: $screen-xs-min) {
+ display: block;
+ margin-bottom: 10px;
+ }
}
}
}