app.wxss 366 B

1234567891011121314151617181920212223242526272829
  1. /**app.wxss**/
  2. .container {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. box-sizing: border-box;
  7. }
  8. button {
  9. background: initial;
  10. }
  11. button:focus{
  12. outline: 0;
  13. }
  14. button::after{
  15. border: none;
  16. }
  17. page {
  18. background: #f6f6f6;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: flex-start;
  22. height: 100%;
  23. overflow: hidden;
  24. }