#topbar — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #topbar, aggregated by home.social.
-
RE: https://defcon.social/@charlesrocket/116987817211858136
x11/topbar
TopBar: an interactive bar and desktop environment for Quickshell
-
@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';
}
#topbar {
grid-area: topbar;
}
#slides {
grid-area: slides;
width: 100%;
height: 100%;
margin: 0;
border: 0;
}