home.social

#topbar — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #topbar, aggregated by home.social.

fetched live
  1. @tomasino
    Not sure if height of iframe can grow as its content gets longer.

    My iframe resizes with viewport & provides its own scrollbars as needed.

    CSS (other rules ensure that body is 100% in each dimension & that box-sizing:border-box is used everywhere):

    body {
    display: grid;
    grid-template-rows: min-content 1fr;
    grid-template-areas:
    'topbar'
    'slides';
    }
    {
    grid-area: topbar;
    }
    {
    grid-area: slides;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    }