my.wxss 281 B

12345678910111213141516
  1. .content-view{
  2. width: 100%;
  3. height: 100vh; /* 视口高度 */
  4. background-color: aliceblue;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. }
  9. .transparent-btn {
  10. background-color: transparent !important;
  11. }
  12. .transparent-btn::after{
  13. border: none !important;
  14. }