Sha256: e0b0d0cc84d949636662be163e3cb0015eff89dbe6fe2ef4c1e7b5139bda89dd
Contents?: true
Size: 876 Bytes
Versions: 21
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 // Utilities for controlling how flex items grow. // flex-grow: $flex-grow-0; // ******************************************************************* $flex-grow-0: 0; $flex-grow: 1; // ******************************************************************* // Flex Shrink // Utilities for controlling how flex items shrink. // flex-shrink: $flex-shrink-0; // ******************************************************************* $flex-shrink-0: 0; $flex-shrink: 1;
Version data entries
21 entries across 21 versions & 1 rubygems