publish-btn.wxss 459 B

123456789101112131415161718192021222324
  1. .publish {
  2. position: fixed;
  3. right: 30rpx;
  4. bottom: 200rpx;
  5. width: 102rpx;
  6. height: 102rpx;
  7. background: linear-gradient(90deg, #FF4330 0%, #FF7B60 100%);
  8. box-shadow: 0 3rpx 5rpx 0 rgba(234, 45, 24, 0.6);
  9. border-radius: 50%;
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: center;
  14. z-index: 99;
  15. }
  16. .publish-text {
  17. font-size: 22rpx;
  18. font-weight: 400;
  19. color: #FFFFFF;
  20. }