Sha256: 8c65c8761b1ec4491bd692a8ec9939cf47f9e3b2f415ad7c0d46f4080fc52545
Contents?: true
Size: 761 Bytes
Versions: 6
Compression:
Stored size: 761 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; } .SubHeader--expandedSearch { grid-template-areas: "left left left" "bottom bottom bottom"; } .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
6 entries across 6 versions & 1 rubygems