refactor css

This commit is contained in:
Julian Freeman
2026-04-16 17:06:09 -04:00
parent 8dd06fa64d
commit 33f43aac56
8 changed files with 785 additions and 751 deletions

View File

@@ -81,3 +81,98 @@ const emit = defineEmits<{
</div>
</section>
</template>
<style scoped>
.extension-card {
display: flex;
gap: 12px;
border-radius: 18px;
padding: 14px;
border: 1px solid rgba(148, 163, 184, 0.18);
background: var(--panel-strong);
}
.extension-icon {
display: grid;
place-items: center;
flex-shrink: 0;
width: 46px;
height: 46px;
border-radius: 14px;
background: linear-gradient(135deg, #e2e8f0, #f8fafc);
color: #475569;
font-weight: 700;
overflow: hidden;
}
.extension-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}
.extension-body {
min-width: 0;
flex: 1;
}
.extension-topline {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
}
.extension-topline h4 {
margin: 0;
font-size: 0.96rem;
line-height: 1.35;
font-weight: 600;
letter-spacing: -0.03em;
}
.meta-line {
margin: 6px 0 0;
color: var(--muted);
font-size: 0.87rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.source-disclosure {
margin-top: 10px;
}
.disclosure-button {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
width: fit-content;
min-width: 120px;
padding: 7px 10px;
border-radius: 12px;
background: rgba(241, 245, 249, 0.9);
color: var(--badge-text);
cursor: pointer;
}
.disclosure-panel {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
}
@media (max-width: 720px) {
.extension-card {
flex-direction: column;
}
.extension-icon {
width: 50px;
height: 50px;
}
}
</style>