app.wxss 330 B

123456789101112131415161718192021222324252627
  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. }