summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2019-02-01 09:00:09 +0000
committerClement Ho <clemmakesapps@gmail.com>2019-02-01 09:00:09 +0000
commit9a0dd375f38384ea70448e4da945e6864b923c4d (patch)
tree7489b199ff699cabf1d97f15efdd96309f3a888d
parent207222814e5aa698e7994bb089778a79ad4a4f1d (diff)
parent483f4f8be5586e44af11294e49a8a7619cb78084 (diff)
downloadgitlab-ce-9a0dd375f38384ea70448e4da945e6864b923c4d.tar.gz
Merge branch 'winh-position-helpers' into 'master'
Add CSS helper classes for positioning See merge request gitlab-org/gitlab-ce!24821
-rw-r--r--app/assets/stylesheets/framework/common.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss
index 0fb9bde1785..08d84f7748f 100644
--- a/app/assets/stylesheets/framework/common.scss
+++ b/app/assets/stylesheets/framework/common.scss
@@ -420,3 +420,9 @@ img.emoji {
.ms-no-clear ::-ms-clear {
display: none;
}
+
+/** COMMON POSITIONING CLASSES */
+.position-bottom-0 { bottom: 0; }
+.position-left-0 { left: 0; }
+.position-right-0 { right: 0; }
+.position-top-0 { top: 0; }