fix: plugins tab stats redesign (#43)

* please github work (#3)

mega squash

* !important
This commit is contained in:
panbread 2024-10-01 23:16:53 +04:00 committed by GitHub
parent 3d8c757e75
commit e997eb6f4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 68 additions and 5 deletions

View file

@ -63,6 +63,7 @@
height: 8em;
display: flex;
flex-direction: column;
background-color: var(--background-secondary-alt) !important;
}
.vc-plugins-info-card div {
@ -84,3 +85,22 @@
.vc-plugins-info-button svg:not(:hover, :focus) {
color: var(--text-muted);
}
.vc-plugin-stats {
background-color: var(--background-secondary-alt);
border-radius: 8px;
padding: 12px;
box-sizing: border-box;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
transition: 0.1s ease-out;
transition-property: box-shadow, transform, background, opacity;
}
.vc-plugin-stats:hover {
background-color: var(--background-tertiary);
transform: translateY(-1px);
box-shadow: var(--elevation-high);
}