app.wxss 457 B

12345678910111213141516171819202122232425
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. /* padding: 200rpx 0; */
  9. box-sizing: border-box;
  10. }
  11. .custom-info-btn{
  12. padding: 5px 25px;
  13. width: auto;
  14. height: auto;
  15. display: flex;
  16. justify-content: center;
  17. border-radius: 3px;
  18. background-color: #7a7777;
  19. }
  20. .custom-info-btn:active{
  21. background-color: #c2b8b8;
  22. box-shadow: 1px 1px 5px black;
  23. }