CSS: Fix line break for long key-value strings (#580)
* CSS: Fix line break for long key-value strings `break-all` forces a line break for long strings (https://developer.mozilla.org/en-US/docs/Web/CSS/word-break). * add pr fix to maplinre-gl-inspect.css Co-authored-by: acalcutt <acalcutt@techidiots.net>
This commit is contained in:
parent
44372784e1
commit
a5459fb3ba
1 changed files with 2 additions and 1 deletions
|
@ -22,12 +22,13 @@
|
|||
|
||||
.maplibregl-inspect_property-value {
|
||||
display: table-cell;
|
||||
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.maplibregl-inspect_property-name {
|
||||
display: table-cell;
|
||||
padding-right: 10px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.maplibregl-ctrl-inspect {
|
||||
|
|
Loading…
Reference in a new issue