Sha256: 8af00fe61251c4c12f2becf34841b727427f77363e65d01fccc9f840d0659d78
Contents?: true
Size: 767 Bytes
Versions: 21
Compression:
Stored size: 767 Bytes
Contents
/* CSS for SubHeader */ .SubHeader { display: grid; grid-template-areas: "left middle right" "bottom bottom bottom"; grid-template-columns: auto 1fr auto; align-items: center; margin-bottom: 16px; /* When the filter input is expanded in mobile, we switch to a flex layout */ flex-wrap: wrap; } .SubHeader-rightPane { grid-area: right; display: flex; align-items: center; column-gap: 12px; } .SubHeader-middlePane { grid-area: middle; text-align: center; } .SubHeader-bottomPane { grid-area: bottom; } .SubHeader-leftPane { grid-area: left; display: flex; align-items: center; width: 100%; gap: 12px; } .SubHeader-filterContainer { display: flex; width: 100%; gap: 8px; }
Version data entries
21 entries across 21 versions & 1 rubygems