drift-bottle.component_20241224114445.scss 790 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* drift-bottle.component.scss */
  2. :host {
  3. display: block;
  4. }
  5. /* 设置页面背景色 */
  6. ion-content {
  7. --background: transparent; /* 确保内容背景透明 */
  8. position: relative;
  9. height: 100vh; /* 确保内容高度占满整个视口 */
  10. }
  11. .full-screen-image {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 100%;
  17. overflow: hidden;
  18. z-index: 0; /* 确保图片在工具栏之下 */
  19. }
  20. .full-screen-image img {
  21. width: 100%;
  22. height: 130%;
  23. object-fit: contain; /* 使图片适应容器并保持宽高比 */
  24. }
  25. ion-button {
  26. font-size: 15px; /* 增大字体大小 */
  27. margin-top: 8px; /* 上间距,仅在需要时添加 */
  28. text-transform: none; /* 按钮文字不变形 */
  29. height: 35px;
  30. }