summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2017-08-15 19:43:56 +0000
committerJarka Kadlecova <jarka@gitlab.com>2017-08-16 17:26:45 +0200
commita9021f1cf1fdb0f83ce9d041e9b02550162501c9 (patch)
tree4de07ab483504764f6ccef966609b04a88a1b27e
parentb4f1b9ff1178e266850f3b153913eadfbf489e12 (diff)
downloadgitlab-ce-a9021f1cf1fdb0f83ce9d041e9b02550162501c9.tar.gz
Merge branch '36134_confi_touch_up' into 'master'
Use border radius scss vars See merge request !13360
-rw-r--r--app/assets/stylesheets/pages/issuable.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
index d14b976374c..87eaf27663f 100644
--- a/app/assets/stylesheets/pages/issuable.scss
+++ b/app/assets/stylesheets/pages/issuable.scss
@@ -8,13 +8,13 @@
.is-confidential {
color: $orange-600;
background-color: $orange-50;
- border-radius: 3px;
+ border-radius: $border-radius-default;
padding: 5px;
margin: 0 3px 0 -4px;
}
.is-not-confidential {
- border-radius: 3px;
+ border-radius: $border-radius-default;
padding: 5px;
margin: 0 3px 0 -4px;
}