|
|
@@ -87,11 +87,30 @@
|
|
|
|
|
|
.supply-list {
|
|
|
width: 100%;
|
|
|
- height: calc(100% - 102px);
|
|
|
+ height: calc(100% - 100px);
|
|
|
padding: 0 10px;
|
|
|
display: grid;
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
grid-gap: 10px;
|
|
|
+ overflow-y: auto;
|
|
|
+
|
|
|
+ /* 自定义滚动条样式 */
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ width: 6px;
|
|
|
+ }
|
|
|
+
|
|
|
+ // &::-webkit-scrollbar-track {
|
|
|
+ // background: #f1f1f1;
|
|
|
+ // border-radius: 3px;
|
|
|
+ // }
|
|
|
+
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 3px;
|
|
|
+ }
|
|
|
+
|
|
|
+ // &::-webkit-scrollbar-thumb:hover {
|
|
|
+ // background: #a8a8a8;
|
|
|
+ // }
|
|
|
|
|
|
.supply-item {
|
|
|
background: linear-gradient(90deg, #dbfaff 0%, #f5faff 100%);
|