• zogwarg@awful.systems
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    2 hours ago

    Beautiful jank layout:

    Image description

    Depicted: Some delightful lemmy jankiness, above messages were only sinlge years followed by a colon, which for whatever reason gets rendered far far too left, outside of the normal “draw box” for a comment.


    My best guess: It treats any number followed by a colon at start of line as a list item, which has a hard x position for the colon, and since years are quite wide it overflows.

    EDIT: Guess looks partially right, guilty css (nested in flex boxes):

    ol, ul { 
      padding-left: 2rem;
    }