CoastalCommitsPastes/client/components/post-list/list-item.module.css
Joaquin "Florius" Azcarate 5df56fbdae
Add description to posts (#71)
Closes #37
2022-04-14 14:25:31 -07:00

36 lines
455 B
CSS

.title {
display: flex;
justify-content: space-between;
}
.badges {
display: flex;
gap: var(--gap-half);
}
.buttons {
display: flex;
gap: var(--gap-half);
}
.oneline {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media screen and (max-width: 700px) {
.badges {
flex-direction: column;
align-items: flex-start;
}
.badges > * {
width: min-content;
}
.title {
flex-direction: column;
gap: var(--gap);
}
}