page-lesson.component.scss 539 B

12345678910111213141516171819202122232425262728293031323334
  1. ion-searchbar {
  2. margin-top: 10px;
  3. }
  4. ion-buttons {
  5. margin-top: 10px;
  6. }
  7. ion-card {
  8. width: 100%;
  9. margin-bottom: 1px;
  10. // height: 100%;
  11. img {
  12. width: 100%;
  13. height: 200px;
  14. object-fit: cover;
  15. }
  16. ion-card-title {
  17. font-size: 18px;
  18. white-space: nowrap;
  19. /* 防止文字换行 */
  20. overflow: hidden;
  21. /* 隐藏溢出部分的文字 */
  22. text-overflow: ellipsis;
  23. /* 显示省略号 */
  24. }
  25. }
  26. .navfooter {
  27. width: 100%;
  28. height: 60px;
  29. }