app.wxss 328 B

12345678910111213141516171819202122232425
  1. /**app.wxss**/
  2. button {
  3. width: unset;
  4. line-height: 1;
  5. background: initial;
  6. padding: 0;
  7. margin: 0;
  8. }
  9. button::after {
  10. border: none;
  11. outline: 0;
  12. }
  13. .button-hover {
  14. background-color: transparent;
  15. }
  16. .container {
  17. width: 100%;
  18. display: flex;
  19. flex-direction: column;
  20. padding: 50rpx;
  21. box-sizing: border-box;
  22. }