components.scss 972 B

12345678910111213141516171819202122232425262728
  1. /******************** 这里放组件样式 ********************/
  2. /***** view *****/
  3. view{box-sizing: border-box;}
  4. /***** 对齐方式 *****/
  5. .ezy-tl{text-align: left;}
  6. .ezy-tc{text-align: center;}
  7. .ezy-tr{text-align: right;}
  8. /***** 状态栏 *****/
  9. .ezy-status-bar{height: var(--status-bar-height);width: 100%;background-color: red;}
  10. /***** 页面高度 *****/
  11. //标题栏
  12. $titleBar-page: calc(100vh - var(--status-bar-height));
  13. //tabBar
  14. $titleBar-page: calc(100vh - 50px);
  15. //标题栏 + tabBar
  16. $titleBar-tabBar-page: calc(100vh - var(--status-bar-height) - 50px);
  17. /***** 模拟标题栏 *****/
  18. .ezy-title-bar {
  19. height: calc(44px + env(safe-area-inset-top));
  20. position: fixed;top: var(--status-bar-height);left: var(--window-left);right: var(--window-right);
  21. background-color: rgb(248, 248, 248);color: rgb(0, 0, 0);box-sizing: border-box;
  22. display: flex;align-items: center;justify-content: center;overflow: hidden;z-index: 998;
  23. }