forked from FOSS/BangleApps
fix overflow issue mentioned in https://github.com/espruino/BangleApps/pull/3548#issuecomment-2345498696
parent
c7790acbb9
commit
9e0ce08f7d
|
@ -81,7 +81,10 @@ a.btn.btn-link.dropdown-toggle {
|
|||
min-height: 8em;
|
||||
}
|
||||
|
||||
.tile-content { position: relative; }
|
||||
.tile-content {
|
||||
position: relative;
|
||||
overflow-wrap: anywhere; /* stop long text like links pushing the width out too far*/
|
||||
}
|
||||
.link-github {
|
||||
position:absolute;
|
||||
top: 36px;
|
||||
|
@ -137,4 +140,4 @@ Not sure how to get 'normal' wrap behaviour (eg fill up until max-width, then wr
|
|||
/*.tooltip:hover::after {
|
||||
white-space: normal;
|
||||
min-width: 160px;
|
||||
}*/
|
||||
}*/
|
||||
|
|
Loading…
Reference in New Issue