index.less 467 B

1234567891011121314151617181920212223242526272829
  1. .button_view {
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-between;
  5. align-items: center;
  6. }
  7. .button_view {
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-around;
  11. align-items: center;
  12. margin-top: 20px;
  13. }
  14. .button_view button {
  15. width: 45%;
  16. font-size: 28rpx;
  17. color: #fff;
  18. padding: 10rpx;
  19. }
  20. .button_view button:nth-child(1) {
  21. background-color: red;
  22. }
  23. .button_view button:nth-child(2) {
  24. background-color: green;
  25. }