Sha256: 19466aa3951170903baac9aced0e0c18b2b3b96a15ff8ab7657217cc66321120
Contents?: true
Size: 876 Bytes
Versions: 29
Compression:
Stored size: 876 Bytes
Contents
// ******************************************************************* // Flex // Variables for controlling how flex items both grow and shrink. // flex: $flex-1; // ******************************************************************* $flex-1: 1 1 0%; $flex-auto: 1 1 auto; $flex-initial: 0 1 auto; $flex-none: none; // ******************************************************************* // Flex Grow // Variables for controlling how flex items grow. // flex-grow: $flex-grow-0; // ******************************************************************* $flex-grow-0: 0; $flex-grow: 1; // ******************************************************************* // Flex Shrink // Variables for controlling how flex items shrink. // flex-shrink: $flex-shrink-0; // ******************************************************************* $flex-shrink-0: 0; $flex-shrink: 1;
Version data entries
29 entries across 29 versions & 1 rubygems