This commit is contained in:
José Conde 2023-06-12 19:29:49 +02:00
parent ce649bc711
commit f3e99183ae

View File

@ -52,7 +52,7 @@ export default {
<div class="info-data-box land">
<div class="info-data-box-label">{{ $t('Land / region') }}</div>
<div class="info-data-box-value">
<div class="text-overflow">{{ $t('Brasil') }}/{{ $t('Cerrado, Carmo do paranaiba') }}</div>
<div class="text-overflow" :title="`${$t('Brasil')} / ${$t('Cerrado, Carmo do paranaiba')}`">{{ $t('Brasil') }}/{{ $t('Cerrado, Carmo do paranaiba') }}</div>
</div>
</div>
<div class="info-data-box height">
@ -276,18 +276,18 @@ h3 {
}
&-box {
padding: 8px 0 0 8px;
padding: 4px 0 0 8px;
border-right-style: solid;
border-right-width: 2px;
border-right-width: 3px;
min-width: 100px;
flex-basis: 0px;
flex-grow: 1;
.text-overflow {
width: 98%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
// width: 98%;
// text-overflow: ellipsis;
// overflow: hidden;
// white-space: nowrap;
}
&:last-child {
@ -311,12 +311,12 @@ h3 {
&-label{
font-family: 'Righteous', cursive;
font-size: 20px;
font-size: 18px;
text-transform: uppercase;
}
&-value{
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-size: 18px;
}
}