@primary-color: #ff592a; // font @font-gray-0: #040a23; @font-gray-1: #656979; @font-gray-2: #9aa0b1; @font-gray-3: #e1e5ec; .flex-row { display: flex; flex-direction: row; } .flex-col { display: flex; flex-direction: column; } .justify-start { justify-content: flex-start; } .justify-center { justify-content: center; } .justify-end { justify-content: flex-end; } .justify-evenly { justify-content: space-evenly; } .justify-around { justify-content: space-around; } .justify-between { justify-content: space-between; } .items-start { align-items: flex-start; } .items-center { align-items: center; } .items-end { align-items: flex-end; }