uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
397 B

3 years ago
  1. // 绝对定位 参数:上,右,下,左
  2. @mixin position-absolute($top: null, $right: null, $bottom: null, $left: null) {
  3. position: absolute;
  4. @if ($left!="" and $left!=null) {
  5. left: $left;
  6. }
  7. @if ($right!="" and $right!=null) {
  8. right: $right;
  9. }
  10. @if ($top!="" and $top!=null) {
  11. top: $top;
  12. }
  13. @if ($bottom!="" and $bottom!=null) {
  14. bottom: $bottom;
  15. }
  16. }