Project

General

Profile

1 61381 k.triantaf
<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
10
  <span *ngIf="ref.childNodes.length == 0">
11
    By continuing to browse the site, you're agreeing to our use of cookies.
12
    <span *ngIf="learnMore">
13
      Learn more in our <a [href]="learnMore" [target]="target">privacy policy</a>.
14
    </span>
15
  </span>
16
17
  <a href="#" role="button"
18
              class="dismiss"
19
20
              (click)="dismiss($event)"><span class="clickable uk-icon">
21
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="close" ratio="1"><path fill="none" stroke="#000" stroke-width="1.06" d="M16,16 L4,4"></path><path fill="none" stroke="#000" stroke-width="1.06" d="M16,4 L4,16"></path></svg>
22
</span></a>
23
</div>
24
</div>