responsive.less 301 B

123456789101112131415161718192021
  1. @media screen and (max-width: @screen-md) {
  2. .@{backtop-prefix-cls} {
  3. right: 60px;
  4. &-rtl {
  5. right: auto;
  6. left: 60px;
  7. }
  8. }
  9. }
  10. @media screen and (max-width: @screen-xs) {
  11. .@{backtop-prefix-cls} {
  12. right: 20px;
  13. &-rtl {
  14. right: auto;
  15. left: 20px;
  16. }
  17. }
  18. }