mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-14 09:03:03 -04:00
fix: plugins tab stats redesign (#43)
* please github work (#3) mega squash * !important
This commit is contained in:
parent
3d8c757e75
commit
e997eb6f4d
3 changed files with 68 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue