💄 Fix issue that it did display scroll bars next to selects

This commit is contained in:
Jan Oberhauser 2019-09-05 19:04:02 +02:00
parent bb476ae99f
commit fc2b3d15c0

View file

@ -554,7 +554,8 @@ export default mixins(
} }
.el-select { .el-select {
overflow: auto; overflow-x: auto;
overflow-y: hidden;
} }
</style> </style>