Project

General

Profile

1
<div class="cookie-law-wrapper"
2
    [ngStyle]="currentStyles"
3
    *ngIf="!cookieLawSeen"
4
    [@state]="animation"
5
    (@state.done)="afterDismissAnimation($event)">
6

    
7
  <div class="copy">
8
    <span #ref><ng-content></ng-content></span>
9
    <span *ngIf="ref.childNodes.length == 0">
10
      By continuing to browse the site, you're agreeing to our use of cookies.
11
      <span *ngIf="learnMore">
12
        Learn more in our <a [href]="learnMore" [target]="target">privacy policy</a>.
13
      </span>
14
    </span>
15

    
16
    <a href="#" role="button" class="dismiss" (click)="dismiss($event)">
17
      <span class="clickable uk-icon">
18
        <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="close" ratio="1">
19
          <path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"></path>
20
          <path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"></path>
21
        </svg>
22
      </span>
23
    </a>
24
  </div>
25
</div>
(3-3/6)