0
0
Fork 0

style: reset poc style

This commit is contained in:
Javier Segarra 2024-05-18 08:53:08 +02:00
parent 41e2462b49
commit 632acc13ac
1 changed files with 5 additions and 11 deletions

View File

@ -51,13 +51,11 @@ const tags = computed(() => {
<style lang="scss" scoped>
.fetchedTags {
display: grid;
grid-template-columns: repeat(3, 0fr);
grid-template-rows: repeat(2, auto);
max-width: 300px;
align-items: center;
.wrap {
display: contents;
width: 100%;
flex-wrap: wrap;
display: flex;
}
.inline-tag {
@ -71,12 +69,8 @@ const tags = computed(() => {
border: 1px solid $color-spacer;
text-overflow: ellipsis;
overflow: hidden;
min-width: 7rem;
min-width: 4rem;
max-width: 4rem;
}
.empty {
border: 1px solid $color-spacer-light;
}
}
</style>