community.component.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ion-content {
  2. height: calc(100vh - 121px) !important;
  3. }
  4. .foodContent {
  5. display: -webkit-box;
  6. -webkit-box-orient: vertical;
  7. -webkit-line-clamp: 2;
  8. overflow: hidden;
  9. text-overflow: ellipsis;
  10. }
  11. .roleCard {
  12. margin: 0;
  13. }
  14. .metadata-end-wrapper {
  15. position: absolute;
  16. top: 3px;
  17. inset-inline-end: 3px;
  18. font-size: 0.6rem;
  19. display: flex;
  20. align-items: center;
  21. }
  22. .carousel-container {
  23. width: 100%;
  24. overflow: hidden;
  25. }
  26. .carousel {
  27. display: flex;
  28. overflow-x: auto;
  29. scroll-behavior: smooth;
  30. scrollbar-width: none; /* 隐藏滚动条 Firefox */
  31. -ms-overflow-style: none; /* 隐藏滚动条 IE/Edge */
  32. -webkit-overflow-scrolling: touch; /* 兼容iOS的滚动效果 */
  33. }
  34. .carousel::-webkit-scrollbar {
  35. display: none; /* 隐藏滚动条 Chrome/Safari */
  36. }
  37. .card {
  38. flex: 0 0 auto;
  39. width: 200px;
  40. height: 200px;
  41. margin-right: 10px;
  42. background-color: #f9f9f9;
  43. border-radius: 5px;
  44. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  45. }
  46. .carousel-content {
  47. display: flex;
  48. flex-wrap: nowrap; /* 防止换行 */
  49. }
  50. .custom-card {
  51. width: 100%; /* 设置每个 ion-card 的宽度为100% */
  52. height: 50%; /* 设置每个 ion-card 的高度为100% */
  53. }