summaryrefslogtreecommitdiffstats
path: root/webapp/sass/utils
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-08-01 13:11:29 +0100
committerGitHub <noreply@github.com>2017-08-01 13:11:29 +0100
commit00e8b6621a7ddf13222144d4acf80421204a23cc (patch)
tree0e6b967eeb813d99c0f07cdcedc3638d76d61144 /webapp/sass/utils
parent25a2013890c7e07b4621fa9b18342e7f35363049 (diff)
downloadchat-00e8b6621a7ddf13222144d4acf80421204a23cc.tar.gz
chat-00e8b6621a7ddf13222144d4acf80421204a23cc.tar.bz2
chat-00e8b6621a7ddf13222144d4acf80421204a23cc.zip
PLT-6595 (Client): Elasticsearch indexing system console UI (#6991)
* PLT-6595: System Console for Elasticsearch Job Management. * Fixing UI issues * Fixing colors * ESLint Fixes. * Update test snapshots. * Fixing cancel button * Fix review comments. * Config capitalisation. * Review fixes.
Diffstat (limited to 'webapp/sass/utils')
-rw-r--r--webapp/sass/utils/_modifiers.scss33
-rw-r--r--webapp/sass/utils/_module.scss1
2 files changed, 34 insertions, 0 deletions
diff --git a/webapp/sass/utils/_modifiers.scss b/webapp/sass/utils/_modifiers.scss
new file mode 100644
index 000000000..aa89fc107
--- /dev/null
+++ b/webapp/sass/utils/_modifiers.scss
@@ -0,0 +1,33 @@
+@charset 'UTF-8';
+
+.margin--right {
+ margin-right: 5px;
+
+ &.x2 {
+ margin-right: 10px;
+ }
+}
+
+.margin--left {
+ margin-left: 5px;
+
+ &.x2 {
+ margin-left: 10px;
+ }
+}
+
+.padding--right {
+ padding-right: 5px;
+
+ &.x2 {
+ padding-right: 10px;
+ }
+}
+
+.padding--left {
+ padding-left: 5px;
+
+ &.x2 {
+ padding-left: 10px;
+ }
+}
diff --git a/webapp/sass/utils/_module.scss b/webapp/sass/utils/_module.scss
index 5dddcaef7..5cf2a85be 100644
--- a/webapp/sass/utils/_module.scss
+++ b/webapp/sass/utils/_module.scss
@@ -3,3 +3,4 @@
@import 'functions';
@import 'mixins';
@import 'animations';
+@import 'modifiers';