12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* drift-bottle.component.scss */
- :host {
- display: block;
- }
- /* 设置页面背景色 */
- ion-content {
- --background: transparent; /* 确保内容背景透明 */
- position: relative;
- height: 100vh; /* 确保内容高度占满整个视口 */
- }
- .full-screen-image {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- z-index: 0; /* 确保图片在工具栏之下 */
- }
- .full-screen-image img {
- width: 100%;
- height: 50%;
- object-fit: contain; /* 使图片适应容器并保持宽高比 */
- }
-
- ion-button {
- font-size: 15px; /* 增大字体大小 */
- margin-top: 8px; /* 上间距,仅在需要时添加 */
- text-transform: none; /* 按钮文字不变形 */
- height: 35px;
- }
-
-
-
-
-
|