diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2019-02-01 09:00:09 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2019-02-01 09:00:09 +0000 |
commit | 9a0dd375f38384ea70448e4da945e6864b923c4d (patch) | |
tree | 7489b199ff699cabf1d97f15efdd96309f3a888d /app/assets | |
parent | 207222814e5aa698e7994bb089778a79ad4a4f1d (diff) | |
parent | 483f4f8be5586e44af11294e49a8a7619cb78084 (diff) | |
download | gitlab-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
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/framework/common.scss | 6 |
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; } |