fix: overflow and wrap of post tags in pagination
This commit is contained in:
parent
149c641d21
commit
ad541c4306
1 changed files with 4 additions and 2 deletions
|
@ -324,14 +324,16 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-tags .post-tag {
|
.post-tags .post-tag {
|
||||||
|
display: inline-block;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
transition: color 0.2s;
|
transition: color 0.2s;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
|
||||||
&:not(:first-child) {
|
&:not(:last-child) {
|
||||||
margin-left: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
Loading…
Reference in a new issue