Guest User

Untitled

a guest
Nov 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. /********************************************************
  2. SASS Variables
  3. ********************************************************/
  4.  
  5. $primary-brand-color: #80C342; // set the primary brand color
  6. $error-color: #a94442; // set the error color
  7.  
  8. // Other SASS variables
  9.  
  10. /********************************************************
  11. SASS Maps
  12. ********************************************************/
  13.  
  14. @import '~@tal/common/custom-styling-setters'; // import the setter utilities to further customise the library components
  15.  
  16. @include set-error-border-thickness(2px); // set the default border thickness
  17. @include set-error-border-thickness(1px, input); // set the border thickness for inputs
  18.  
  19. @include set-hover-background-color($primary-brand-color); // set the default background color on hover
  20. @include set-hover-background-color(green, button); // set the background color on hover for buttons and radios displayed as buttons
  21.  
  22. // Other setters to modify SASS maps
Add Comment
Please, Sign In to add comment