You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.3 KiB
CSS

@import 'element-plus/dist/index.css';
html,
body {
margin: 0;
padding: 0;
height: 100%;
/* overflow: hidden; */
/* 可选:隐藏滚动条 */
}
.container {
background-color: white;
/* color: black; */
width: 100%;
height: 100%;
margin-top: 5px;
padding: 0;
/* display: flex; */
/* overflow: hidden; */
}
.page-container {
position: fixed;
bottom: 3px;
/* 距离底部距离 */
left: 50%;
transform: translateX(-50%);
/* 居中关键 */
/* background: rgba(24, 24, 40, 0.95); */
backdrop-filter: blur(12px);
/* border-radius: 10px; */
/* padding: 12px; */
display: flex;
/* flex-direction: column; */
/* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4); */
/* border: 1px solid rgba(255, 255, 255, 0.1); */
z-index: 1000;
height: 25px;
width: 300px;
padding: 0;
margin: 0;
}
.ellipsis-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
width: 100%;
cursor: default;
/* 修改鼠标样式,可选项 */
}
/* 覆盖 el-tabs 和 el-tab-pane 的默认 padding 和 margin */
.el-tabs,
.el-tabs .el-tabs__content,
.el-tab-pane {
padding: 0 !important;
margin: 0 !important;
}
*,
*::before,
*::after {
box-sizing: border-box;
}