index.scss 461 B

1234567891011121314151617181920212223242526
  1. .login-container {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. .login-btn{
  9. border: none;
  10. background-color: #548cf7;
  11. color: #ffffff;
  12. font-size: 32rpx;
  13. width: 600rpx;
  14. height: 80rpx;
  15. border-radius: 50px;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. .u-icon{
  20. margin-right: 20rpx;
  21. }
  22. }
  23. }
  24. page {
  25. height: 100%;
  26. }