diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-01-31 11:28:26 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2019-01-31 23:44:58 +0100 |
commit | 483f4f8be5586e44af11294e49a8a7619cb78084 (patch) | |
tree | 0b47b0de22bc52d4de0f0147e0788d9096754862 | |
parent | 143975841cc47ce775e6b0d8c58517953cfc92fa (diff) | |
download | gitlab-ce-483f4f8be5586e44af11294e49a8a7619cb78084.tar.gz |
Add CSS helper classes for positioning
-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; } |