mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Merge pull request #21689 from overleaf/jel-fix-related-tags
[web] Fix gallery related tags height GitOrigin-RevId: 11c2865edddf40768c8edfacef629ed281210e3d
This commit is contained in:
parent
637185025f
commit
5e58370b8c
2 changed files with 3 additions and 2 deletions
|
@ -124,4 +124,5 @@ $max-width: 160px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
align-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
|
@ -404,7 +404,7 @@
|
||||||
|
|
||||||
.related-tags {
|
.related-tags {
|
||||||
margin-top: var(--spacing-09);
|
margin-top: var(--spacing-09);
|
||||||
max-height: 61px;
|
max-height: 62px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&.all-tags {
|
&.all-tags {
|
||||||
|
@ -412,7 +412,7 @@
|
||||||
|
|
||||||
// min-height prevents elements below the tags from moving upwards
|
// min-height prevents elements below the tags from moving upwards
|
||||||
// when Show More is clicked
|
// when Show More is clicked
|
||||||
min-height: 102px;
|
min-height: 105px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge-link {
|
.badge-link {
|
||||||
|
|
Loading…
Reference in a new issue