Skip to content

Commit

Permalink
Add line break below the range select on mobile only
Browse files Browse the repository at this point in the history
  • Loading branch information
diegovalle committed Sep 13, 2024
1 parent 368d5f2 commit 6fa03e3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions elcri.men/src/pages/mapa-de-delincuencia.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,11 +577,14 @@ class DotMapGL extends React.Component {
className="column has-text-centered is-full"
style={{ fontFamily: 'Roboto Condensed, sans-serif' }}
>
<FormattedMessage id="tasa de homicidios seleccionada" />:{' '}
<div className="is-hidden-tablet">
<br />
</div>
<b>
<FormattedMessage id="tasa de homicidios seleccionada" />
<span>{this.state.sValues[0]}</span> -{' '}
<span>{this.state.sValues[1]}</span>{' '}
</b>
: <span>{this.state.sValues[0]}</span> -{' '}
<span>{this.state.sValues[1]}</span>
</div>
</div>
</div>
Expand Down Expand Up @@ -653,7 +656,7 @@ function HomicideMapPage(props) {
format="auto"
responsive="true"
/> */}
<div style={{ height: '930px', overflow: 'hidden' }}>
<div style={{ height: '990px', overflow: 'hidden' }}>
<DotMapGL />
</div>

Expand Down

0 comments on commit 6fa03e3

Please sign in to comment.