feat: finish installed plugin page & install from github

This commit is contained in:
HYana
2025-04-26 23:03:13 +08:00
committed by Junyan Qin
parent cf2e1a473e
commit ca183d2eb7
5 changed files with 128 additions and 17 deletions

View File

@@ -1,41 +1,45 @@
.cardContainer {
width: 360px;
height: 129px;
height: 140px;
box-sizing: border-box;
background-color: #FFF;
border-radius: 9px;
padding-top: 10px;
padding-bottom: 10px;
box-shadow: rgba(0, 0, 0, 0.4) 0 1px 1px -1px;
display: flex;
flex-direction: column;
align-items: flex-start;
align-items: center;
justify-content: space-evenly;
}
.cardHeader {
width: 100%;
width: 90%;
height: 30px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background-color: #79c1f4;
.iconVersionContainer {
width: 100px;
width: 90px;
height: 100%;
background-color: #063a5a;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
}
.cardContent {
width: 100%;
width: 90%;
height: 70px;
background-color: #e38787;
}
.cardFooter {
width: 100%;
width: 90%;
height: 30px;
background-color: #f8ff6d;
}
@@ -47,3 +51,22 @@
font-size: 22px;
font-weight: bold;
}
.linkSettingContainer {
width: 80px;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
.link {
width: 32px;
cursor: pointer;
text-align: center;
display: flex;
flex-direction: row;
align-self: center;
justify-content: space-between;
}
}