PHP Classes

File: src/styles/utility.scss

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Emailer   src/styles/utility.scss   Download  
File: src/styles/utility.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WP Emailer
Allow WordPress users to configure email settings
Author: By
Last change:
Date: 1 year ago
Size: 771 bytes
 

Contents

Class file image Download
// Display .block { display: block; } .flex { display: flex; } // Flex properties .flex-row { flex-direction: row; } .flex-column { flex-direction: column; } .flex-start { justify-content: flex-start; } .flex-end { justify-content: flex-end; } .justify-between { justify-content: space-between; } .w-full { width: 100%; } .w-half { width: 50%; } // Margins .mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; } .mt-50 { margin-top: 50px; } .ml-50 { margin-left: 50px; } // Text .text-primary { color: var(--color-primary); } .text-danger { color: var(--color-error); } .text-success { color: var(--color-success); } .text-center { text-align: center; }