Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-12-02 16:46:15 +0300
committerDouwe Maan <douwe@gitlab.com>2015-12-02 16:46:15 +0300
commit3ae7dba931b880b8090edffb247ebfe32d26648e (patch)
tree11b681080e41dc6a859f73069db1702d1eb8ff28 /app/assets/stylesheets/framework/panels.scss
parent58dad2a9dadea647b5665e1de6a6e997484b96b1 (diff)
Use gl-padding instead of 15px/20px where appropriate
Diffstat (limited to 'app/assets/stylesheets/framework/panels.scss')
-rw-r--r--app/assets/stylesheets/framework/panels.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/panels.scss b/app/assets/stylesheets/framework/panels.scss
new file mode 100644
index 00000000000..406aff3d72c
--- /dev/null
+++ b/app/assets/stylesheets/framework/panels.scss
@@ -0,0 +1,15 @@
+.panel {
+ margin-bottom: $gl-padding;
+
+ .panel-heading {
+ padding: 10px $gl-padding;
+ }
+ .panel-body {
+ padding: $gl-padding;
+
+ .form-actions {
+ margin: -$gl-padding;
+ margin-top: $gl-padding;
+ }
+ }
+}