contao / website

Issue tracker for contao.org
2 stars 0 forks source link

Make <code> scrollable #137

Closed akroii closed 3 years ago

akroii commented 3 years ago

On mobile devices the element <code> is not scrollable you can simple add:

code{
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}
@media (min-width:768px){
code{
    display: inline;
}
}

Would change to this:

Bildschirmfoto 2020-09-28 um 09 41 43

instead of this:

Bildschirmfoto 2020-09-28 um 09 41 53
leofeyer commented 3 years ago

Fixed.