You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 rivejä
463 B

  1. @use 'sass:string';
  2. @function encode-color($color) {
  3. @return '%23' + string.slice('#{$color}', 2);
  4. }
  5. $svg-color: #003366; // = --swatches-primary-500 im standard theme
  6. select,
  7. select.form-control {
  8. background-image: url("data:image/svg+xml,%3Csvg width='43' height='30' viewBox='0 0 43 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5001 22L6.27283 10.75L22.7273 10.75L14.5001 22Z' fill='#{encode-color($svg-color)}'/%3E%3C/svg%3E");
  9. }