Sha256: 01efc7bd5288371d4cee2bdfa52ed71d081ad7db34c93180a011c1b62dc679a9
Contents?: true
Size: 952 Bytes
Versions: 3
Compression:
Stored size: 952 Bytes
Contents
// Helpers .list-reset{ margin: 0; padding: 0; list-style: none; } .list-inline{ > li{ display: inline-block; vertical-align: top; } > dt{ clear: both; margin-right: .3em; } > dt, > dd{ float: left; margin-bottom: 0; } } .flex-center{ display: flex; justify-content: center; align-items: center; > :first-child{ margin-right: .5rem; } > :last-child{ margin-left: .5rem; } } // flex--cc: // justify-content: center; // align-items: center; .flex--cc{ @include flex; @include flex-align($x: center, $y: middle); } // flex--sbc: // justify-content: space-between; // align-items: center; .flex--sbc{ @include flex; @include flex-align($x: justify, $y: middle); } // flex--sbe: // justify-content: space-between; // align-items: flex-end; .flex--sbe{ @include flex; @include flex-align($x: justify, $y: bottom); } .scroll{ max-height: 50vh; overflow-y: scroll; }
Version data entries
3 entries across 3 versions & 1 rubygems