|
@@ -1,18 +1,22 @@
|
|
|
@use "./reset";
|
|
|
@use "./transition";
|
|
|
+
|
|
|
.app-container {
|
|
|
padding: 10px;
|
|
|
}
|
|
|
+
|
|
|
.el-button-big {
|
|
|
height: 80px !important;
|
|
|
border-radius: 40px !important;
|
|
|
font-size: $f24 !important;
|
|
|
}
|
|
|
+
|
|
|
.el-button-update {
|
|
|
height: 80px !important;
|
|
|
border-radius: 16px !important;
|
|
|
font-size: $f24 !important;
|
|
|
}
|
|
|
+
|
|
|
.search-container {
|
|
|
padding: 18px 0 0 10px;
|
|
|
margin-bottom: 10px;
|
|
@@ -26,14 +30,17 @@
|
|
|
.el-popconfirm__main {
|
|
|
font-size: 20px;
|
|
|
}
|
|
|
+
|
|
|
.el-popconfirm__action {
|
|
|
height: 40px;
|
|
|
}
|
|
|
+
|
|
|
.el-popconfirm__action > button {
|
|
|
font-size: 20px;
|
|
|
padding: 10px;
|
|
|
height: 100%;
|
|
|
}
|
|
|
+
|
|
|
//气泡确认框样式(适当调大样式)
|
|
|
.table-container > .el-card__header {
|
|
|
padding: calc(var(--el-card-padding) - 8px) var(--el-card-padding);
|
|
@@ -86,10 +93,12 @@
|
|
|
gap: 20px;
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
}
|
|
|
+
|
|
|
.stepsViewScrollH {
|
|
|
width: calc((100vw / 6 * 5) - 50px);
|
|
|
height: calc(100vh - 254px);
|
|
|
}
|
|
|
+
|
|
|
//search框样式
|
|
|
.searchInput {
|
|
|
height: 50px;
|
|
@@ -98,6 +107,7 @@
|
|
|
border: 1px solid #00000025;
|
|
|
font-size: $f24;
|
|
|
color: #00000080;
|
|
|
+
|
|
|
.el-input {
|
|
|
--el-input-focus-border: none;
|
|
|
--el-input-hover-border: none;
|
|
@@ -273,3 +283,8 @@
|
|
|
font-size: $p20;
|
|
|
color: black;
|
|
|
}
|
|
|
+
|
|
|
+//解决当pdf组件中,,有写pdf会导致页面右侧多出一个黑色块的canvas
|
|
|
+.hiddenCanvasElement {
|
|
|
+ display: none;
|
|
|
+}
|