Fix lint errors (#794)

This commit is contained in:
Geometrically
2022-12-06 15:12:38 -08:00
committed by GitHub
parent 5fc32c7b85
commit 050f8f3c81
2 changed files with 5 additions and 5 deletions

View File

@@ -442,7 +442,7 @@ export default {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: end;
align-items: flex-end;
gap: var(--spacing-card-md);
.stat {
@@ -495,7 +495,7 @@ export default {
grid-area: description;
margin-block: 0;
display: flex;
justify-content: start;
justify-content: flex-start;
}
.tags {
@@ -512,7 +512,7 @@ export default {
display: flex;
flex-direction: column;
gap: var(--spacing-card-sm);
align-items: end;
align-items: flex-end;
flex-grow: 1;
}
</style>