fix: fix sidebar display bug when data empty (#2883)

* fix: fix sidebar display bug when data empty

* style(render/sidebar): add space after data
This commit is contained in:
bigshans 2022-01-15 15:43:55 +08:00 committed by GitHub
parent 6f1e733cd5
commit ffce55df59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -419,9 +419,18 @@ export default {
flex-direction: column;
justify-content: space-around;
padding-bottom: 100px;
& .no-data {
display: flex;
align-items: center;
flex-direction: column;
}
& .no-data svg {
fill: var(--themeColor);
width: 120px;
}
& .no-data .button-primary {
display: block;
margin-top: 20px;
}
}
</style>