summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-12-20 10:24:13 +0000
committerFilipa Lacerda <filipa@gitlab.com>2017-12-20 10:24:13 +0000
commit2c4174028d4fb150fb1adbc7ec920007b72e0da2 (patch)
treeba22f2a11159ae63de9502750b946df8e378ef6b /app/assets/stylesheets/framework
parent800ab47a53ea1dfaabdb67501360a14322268315 (diff)
downloadgitlab-ce-2c4174028d4fb150fb1adbc7ec920007b72e0da2.tar.gz
Adjust illustrations size
Diffstat (limited to 'app/assets/stylesheets/framework')
-rw-r--r--app/assets/stylesheets/framework/images.scss11
1 files changed, 7 insertions, 4 deletions
diff --git a/app/assets/stylesheets/framework/images.scss b/app/assets/stylesheets/framework/images.scss
index aa2d30a3cef..fd5c3c81a53 100644
--- a/app/assets/stylesheets/framework/images.scss
+++ b/app/assets/stylesheets/framework/images.scss
@@ -20,10 +20,13 @@
width: 100%;
}
- &.svg-250 {
- img,
- svg {
- width: 250px;
+ $image-widths: 250 306 394;
+ @each $width in $image-widths {
+ &.svg-#{$width} {
+ img,
+ svg {
+ width: #{$width + 'px'};
+ }
}
}
}