Fix css bug when empty abbreviation, description on public homepage
This commit is contained in:
parent
19ce1b6653
commit
aee9ce7c9c
|
@ -13,6 +13,7 @@
|
|||
margin-top: 0px;
|
||||
padding-top: 10px;
|
||||
text-transform: uppercase;
|
||||
min-height: 2.1em;
|
||||
}
|
||||
|
||||
.container-header p {
|
||||
|
@ -34,7 +35,6 @@
|
|||
|
||||
.about-item {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.about-item .length {
|
||||
|
@ -69,3 +69,7 @@ hr {
|
|||
margin-bottom: 0em;
|
||||
color: #aaaaaa;
|
||||
}
|
||||
|
||||
.desc {
|
||||
min-height: 1.5em;
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<p class="mt-1 mb-2">{{dataset.description}}</p>
|
||||
<p class="mt-1 mb-2 desc">{{dataset.description}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
|
Loading…
Reference in New Issue