This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | .floatedButton { | |
| appearance: none; | |
| background: transparent; | |
| border: none; | |
| display: flex; | |
| align-items: center; | |
| color: #fff; | |
| justify-content: start; | |
| max-width: 0; | |
| transition: all ease 2000ms; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // stateless functional component. | |
| // For now, think of a stateless component as one that can receive data and render it, but does not manage or track changes to that data. (We'll cover the second way to create a React component in the next challenge.) | |
| // name of component :requires your function name to begin with a capital letter. | |
| const DemoComponent = function() { | |
| return ( | |
| <div className='customClass' /> | |
| ); | |
| }; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const Default = { | |
| backdrop: true, | |
| } | |
| export class stickyScrollElement { | |
| /** | |
| * Constructs a new parallax instance. | |
| * | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | export function activeFieldClass() { | |
| const formEL = document.querySelectorAll('.gfield input, .gfield textarea, .gfield select'); | |
| if (formEL) { | |
| [].forEach.call(formEL, function (el) { | |
| //Add Class form control if needed | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| |-------------------------------------------------------------------------- | |
| | NAVIGATEUR OBSOLETE | |
| |-------------------------------------------------------------------------- | |
| */ | |
| .hide_scroll{ | |
| overflow: hidden !important; | |
| height: 100% !important; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | .masonry-grid { | |
| $gutter-masonry: 30px / 2; | |
| $nbrColonnes : 2; | |
| display: block; | |
| width: auto; // ne pas mettre width 100% | |
| margin-left: rfs-value(-$gutter-masonry); | |
| margin-right: rfs-value(-$gutter-masonry); | |
| &:after { | |
| content: ''; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //---------------------------// | |
| // ===== Scroll to Top ==== | |
| // author: Annelyse Egloff | |
| //---------------------------// | |
| export function returnTop(elementID) { | |
| let el = document.getElementById(elementID); | |
| const scrollToTop = () => { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Installer le plugin WP Mail SMTP | |
| ## Paramétrer avec "autre smtp" | |
| ### aller sur l'hébergeur du client, là où sont les mails <br> | |
| Créer une compte mail spécialement <br> | |
| Exemple : [email protected] <br> | |
| Pour éviter que si ils changent de mot de passe ça ne fonctionne plus ! | |
| ## Ensuite aller dans les parametres du plugin : | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const swiper = new Swiper(".swiper-post", { | |
| // Disable preloading of all images | |
| slidesPerView: 1.2, | |
| spaceBetween: 15, | |
| preloadImages: false, | |
| lazy: { | |
| loadPrevNext: true, | |
| }, | |
| centeredSlides: true, | |
| loop: true, |