index.wxss 608 B

12345678910111213141516171819202122232425262728293031323334
  1. .option-box:empty {
  2. display: none;
  3. }
  4. .logout {
  5. width: 100rpx;
  6. height: 100rpx;
  7. text-align: center;
  8. border-radius: 50%;
  9. display: flex;
  10. align-items: center;
  11. flex-direction: column;
  12. justify-content: center;
  13. background-color: var(--red);
  14. color: white;
  15. position: fixed;
  16. bottom: 100rpx;
  17. right: 50rpx;
  18. }
  19. .scan {
  20. width: 100rpx;
  21. height: 100rpx;
  22. text-align: center;
  23. border-radius: 50%;
  24. display: flex;
  25. align-items: center;
  26. flex-direction: column;
  27. justify-content: center;
  28. background-color: var(--blue);
  29. color: white;
  30. position: fixed;
  31. bottom: 250rpx;
  32. right: 50rpx;
  33. }