epfl-elements 5.2.7 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/components/atoms/research-icon/research-icon-discrete-link.twig +3 -0
  2. package/dist/components/atoms/research-icon/research-icon-group.twig +21 -0
  3. package/dist/components/atoms/research-icon/research-icon-link-group.twig +21 -0
  4. package/dist/components/atoms/research-icon/research-icon-link.twig +9 -0
  5. package/dist/components/atoms/research-icon/research-icon-negative-link.twig +3 -0
  6. package/dist/components/atoms/research-icon/research-icon-negative.twig +3 -0
  7. package/dist/components/atoms/research-icon/research-icon-round-discrete-link.twig +4 -0
  8. package/dist/components/atoms/research-icon/research-icon-round-link.twig +3 -0
  9. package/dist/components/atoms/research-icon/research-icon-round.twig +3 -0
  10. package/dist/components/atoms/research-icon/research-icon-single-link-with-details.twig +11 -0
  11. package/dist/components/atoms/research-icon/research-icon-single-link.twig +10 -0
  12. package/dist/components/atoms/research-icon/research-icon-single.twig +9 -0
  13. package/dist/components/atoms/research-icon/research-icon.twig +9 -0
  14. package/dist/components/atoms/research-icon/research-icon.yml +29 -0
  15. package/dist/components/atoms/social-icon/social-icon-group.twig +3 -0
  16. package/dist/components/atoms/social-icon/social-icon-link-group.twig +5 -0
  17. package/dist/components/atoms/social-icon/social-icon-link.twig +2 -2
  18. package/dist/components/atoms/social-icon/social-icon-single-link-with-details.twig +2 -2
  19. package/dist/components/atoms/social-icon/social-icon-single-link.twig +2 -2
  20. package/dist/components/atoms/social-icon/social-icon-single.twig +2 -2
  21. package/dist/components/atoms/social-icon/social-icon.twig +2 -2
  22. package/dist/components/atoms/social-icon/social-icon.yml +1 -0
  23. package/dist/components/molecules/map/map-overlay.twig +7 -0
  24. package/dist/components/molecules/map copy/map-overlay.twig +7 -0
  25. package/dist/components/molecules/map copy/map.twig +5 -0
  26. package/dist/components/molecules/map copy/map.yml +20 -0
  27. package/dist/css/elements.css +124 -3
  28. package/dist/css/elements.min.css +1 -1
  29. package/dist/css/elements.min.css.map +1 -1
  30. package/dist/icons/icons.svg +1 -1
  31. package/dist/js/reader.js +204 -65
  32. package/dist/js/reader.min.js +2 -2
  33. package/dist/js/reader.min.js.map +1 -1
  34. package/dist/js/vendors.js +177 -241
  35. package/dist/js/vendors.min.js +1 -1
  36. package/dist/js/vendors.min.js.LICENSE.txt +1 -1
  37. package/dist/package.json +3 -3
  38. package/package.json +3 -3
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ discrete_ri: true
3
+ } %}
@@ -0,0 +1,21 @@
1
+ {% set round_ri = round_ri ? round_ri : false %}
2
+ {% set discrete_ri = discrete_ri ? discrete_ri : false %}
3
+ {% set negative_ri = negative_ri ? negative_ri : false %}
4
+
5
+ <ul class="research-icon-list list-inline">
6
+ <li>
7
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'OrcID', icon_ri: 'icon-orcid', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://orcid.org/' } %}
8
+ </li>
9
+ <li>
10
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Google Scholar', icon_ri: 'icon-googlescholar', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://scholar.google.com/' } %}
11
+ </li>
12
+ <li>
13
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Scopus', icon_ri: 'icon-scopus', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.scopus.com/' } %}
14
+ </li>
15
+ <li>
16
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Stack Overflow', icon_ri: 'icon-stackoverflow', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://stackoverflow.com/' } %}
17
+ </li>
18
+ <li>
19
+ {% include '@atoms/research-icon/research-icon-single.twig' with { pretty_name_ri: 'Publons - Web of Science', icon_ri: 'icon-wos', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.webofscience.com/' } %}
20
+ </li>
21
+ </ul>
@@ -0,0 +1,21 @@
1
+ {% set round_ri = round_ri ? round_ri : false %}
2
+ {% set discrete_ri = discrete_ri ? discrete_ri : false %}
3
+ {% set negative_ri = negative_ri ? negative_ri : false %}
4
+
5
+ <ul class="research-icon-list list-inline">
6
+ <li>
7
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'OrcID', icon_ri: 'icon-orcid', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://orcid.org/' } %}
8
+ </li>
9
+ <li>
10
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Google Scholar', icon_ri: 'icon-googlescholar', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://scholar.google.com/' } %}
11
+ </li>
12
+ <li>
13
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Scopus', icon_ri: 'icon-scopus', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.scopus.com/' } %}
14
+ </li>
15
+ <li>
16
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Stack Overflow', icon_ri: 'icon-stackoverflow', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://stackoverflow.com/' } %}
17
+ </li>
18
+ <li>
19
+ {% include '@atoms/research-icon/research-icon-single-link.twig' with { pretty_name_ri: 'Publons - Web of Science', icon_ri: 'icon-wos', round_ri: round_ri, discrete_ri: discrete_ri, negative_ri: negative_ri, url: 'https://www.webofscience.com' } %}
20
+ </li>
21
+ </ul>
@@ -0,0 +1,9 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ <a href="#" class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri ~ discrete_ri }}">
7
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
8
+ <span class="sr-only">{{ pretty_name_ri }}</span>
9
+ </a>
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ negative_ri: true
3
+ } %}
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon.twig" with {
2
+ negative_ri: true
3
+ } %}
@@ -0,0 +1,4 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ discrete_ri: true,
3
+ round_ri: true
4
+ } %}
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon-link.twig" with {
2
+ round_ri: true
3
+ } %}
@@ -0,0 +1,3 @@
1
+ {% include "@atoms/research-icon/research-icon.twig" with {
2
+ round_ri: true
3
+ } %}
@@ -0,0 +1,11 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set user_id = user_id ?: 'firstname.name' %}
3
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
4
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
5
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
6
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
7
+ {% set url = url or '#' %}
8
+ <a href="{{ url }}" class="{{ 'research-icon research-icon-details research-' ~ icon_ri ~ round_ri ~ negative_ri ~ discrete_ri }}" rel="nofollow" title="{{ pretty_name_ri }}">
9
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
10
+ <span class="user">{{ user_id }}</span>
11
+ </a>
@@ -0,0 +1,10 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ {% set url = url ?: '#' %}
7
+ <a href="{{ url }}" class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri ~ discrete_ri }}" target="_blank" rel="nofollow noopener">
8
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
9
+ <span class="sr-only">{{ pretty_name_ri }}</span>
10
+ </a>
@@ -0,0 +1,9 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ <span class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri }}">
7
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
8
+ <span class="sr-only">{{ pretty_name }}</span>
9
+ </span>
@@ -0,0 +1,9 @@
1
+ {% set pretty_name_ri = pretty_name_ri ?: 'Scopus' %}
2
+ {% set icon_ri = icon_ri ?: 'icon-scopus' %}
3
+ {% set round_ri = round_ri ? ' research-icon-round' : '' %}
4
+ {% set discrete_ri = discrete_ri ? ' research-icon-discrete' : '' %}
5
+ {% set negative_ri = negative_ri ? ' research-icon-negative' : '' %}
6
+ <span class="{{ 'research-icon research-' ~ icon_ri ~ round_ri ~ negative_ri }}">
7
+ {% include '@atoms/icon/icon.twig' with { icon: icon_ri } %}
8
+ <span class="sr-only">{{ pretty_name }}</span>
9
+ </span>
@@ -0,0 +1,29 @@
1
+ title: Research icon
2
+ name: research-icon
3
+ variants:
4
+ - name: link
5
+ title: Link
6
+ - name: group
7
+ title: Group
8
+ - name: link-group
9
+ title: Link Group
10
+ - name: negative
11
+ title: Negative
12
+ - name: round
13
+ title: Round
14
+ - name: discrete-link
15
+ title: Discrete Link
16
+ - name: round-link
17
+ title: Round Link
18
+ - name: round-discrete-link
19
+ title: Round Discrete Link
20
+ - name: negative-link
21
+ title: Negative Link
22
+ notes: |
23
+
24
+ Icons to accomodate research boxes. The available research ids are:
25
+ * `orcid`
26
+ * `googlescholar`
27
+ * `scopus`
28
+ * `stackoverflow`
29
+ * `wos`
@@ -18,6 +18,9 @@
18
18
  <li>
19
19
  {% include '@atoms/social-icon/social-icon-single.twig' with { pretty_name: 'Mastodon', icon: 'icon-mastodon', round: round, discrete: discrete, negative: negative } %}
20
20
  </li>
21
+ <li>
22
+ {% include '@atoms/social-icon/social-icon-single.twig' with { pretty_name: 'Matrix', icon: 'icon-matrix', round: round, discrete: discrete, negative: negative } %}
23
+ </li>
21
24
  <li>
22
25
  {% include '@atoms/social-icon/social-icon-single.twig' with { pretty_name: 'TikTok', icon: 'icon-tiktok', round: round, discrete: discrete, negative: negative } %}
23
26
  </li>
@@ -15,6 +15,11 @@
15
15
  <li>
16
16
  {% include '@atoms/social-icon/social-icon-single-link.twig' with { pretty_name: 'Follow us on Mastodon', icon: 'icon-mastodon', round: round, discrete: discrete, negative: negative, url: 'https://social.epfl.ch/@epfl/' } %}
17
17
  </li>
18
+ {% if social_matrix %}
19
+ <li>
20
+ {% include '@atoms/social-icon/social-icon-single-link.twig' with { pretty_name: 'Get in touch on Matrix', icon: 'icon-matrix', round: round, discrete: discrete, negative: negative, url: 'https://matrix.to/#/@username:epfl.ch' } %}
21
+ </li>
22
+ {% endif %}
18
23
  {% if social_tiktok %}
19
24
  <li>
20
25
  {% include '@atoms/social-icon/social-icon-single-link.twig' with { pretty_name: 'Follow us on TikTok', icon: 'icon-tiktok', round: round, discrete: discrete, negative: negative, url: 'https://www.tiktok.com/@epflstudents' } %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,6 +1,6 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
2
  {% set user_id = user_id ?: 'firstname.name' %}
3
- {% set icon = icon ?: 'icon-x' %}
3
+ {% set icon = icon ?: 'icon-mastodon' %}
4
4
  {% set round = round ? ' social-icon-round' : '' %}
5
5
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
6
6
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'Follow us on X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Follow us on Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -1,5 +1,5 @@
1
- {% set pretty_name = pretty_name ?: 'X' %}
2
- {% set icon = icon ?: 'icon-x' %}
1
+ {% set pretty_name = pretty_name ?: 'Mastodon' %}
2
+ {% set icon = icon ?: 'icon-mastodon' %}
3
3
  {% set round = round ? ' social-icon-round' : '' %}
4
4
  {% set discrete = discrete ? ' social-icon-discrete' : '' %}
5
5
  {% set negative = negative ? ' social-icon-negative' : '' %}
@@ -27,6 +27,7 @@ notes: |
27
27
  * `instagram`
28
28
  * `linkedin`
29
29
  * `mastodon`
30
+ * `matrix`
30
31
  * `tiktok`
31
32
  * `whatsapp`
32
33
  * `x`
@@ -0,0 +1,7 @@
1
+ <h4 class="sr-only">Access map</h4>
2
+ <figure class="media-map">
3
+ {% include '@atoms/picture/picture.twig' %}
4
+ <figcaption class="media-map-over">
5
+ <a href="#" class="btn btn-primary btn-block">Itinéraire vers le bureau BP (1er étage)</a>
6
+ </figcaption>
7
+ </figure>
@@ -0,0 +1,7 @@
1
+ <h4 class="sr-only">Access map</h4>
2
+ <figure class="media-map">
3
+ {% include '@atoms/picture/picture.twig' %}
4
+ <figcaption class="media-map-over">
5
+ <a href="#" class="btn btn-primary btn-block">Itinéraire vers le bureau BP (1er étage)</a>
6
+ </figcaption>
7
+ </figure>
@@ -0,0 +1,5 @@
1
+ <iframe
2
+ height="350px"
3
+ width="100%"
4
+ src="https://plan.epfl.ch/iframe/?room==sv 1717&map_zoom=10">
5
+ </iframe>
@@ -0,0 +1,20 @@
1
+ title: Map
2
+ name: map
3
+ notes: |
4
+ The following is an example URL that loads the Plan Embed API:
5
+ `https://plan.epfl.ch/iframe/?room==ROOM&map_zoom=ZOOM`
6
+
7
+ Replace :
8
+ * ROOM (example → SV 1717)
9
+ * ZOOM (example → 10)
10
+
11
+ To use the Plan Embed API on your web page, set the URL you've built as the
12
+ value of an iframe's `src` attribute. Control the map's size with the iframe's
13
+ `height` and `width` attributes.
14
+
15
+ The iframe is only allowed on the epfl.ch domain.
16
+ wrapper: 'tlbx-hidden'
17
+ variants:
18
+ - name: overlay
19
+ title: Overlapping Figure Caption
20
+ wrapper: ' '
@@ -12301,6 +12301,126 @@ picture .img-fluid {
12301
12301
  background: linear-gradient(#ff0000, #ff0000) 0/var(--sx) 100% no-repeat #c1c1c1;
12302
12302
  }
12303
12303
 
12304
+ .research-icon {
12305
+ display: inline-block;
12306
+ padding: 0.7rem;
12307
+ background: #e6e6e6;
12308
+ border-radius: 0.17rem;
12309
+ line-height: 0;
12310
+ }
12311
+ .research-icon .icon {
12312
+ top: 0;
12313
+ font-size: 24px;
12314
+ color: #fff;
12315
+ }
12316
+
12317
+ .research-icon-details {
12318
+ min-height: 2.6em;
12319
+ -webkit-text-decoration: none !important;
12320
+ text-decoration: none !important;
12321
+ vertical-align: bottom;
12322
+ }
12323
+ .research-icon-details:hover {
12324
+ background: #707070;
12325
+ color: white;
12326
+ }
12327
+ .research-icon-details .user {
12328
+ position: relative;
12329
+ top: 2px;
12330
+ line-height: 24px;
12331
+ vertical-align: bottom;
12332
+ }
12333
+ .research-icon-details .icon + .user {
12334
+ margin-left: 0.25em;
12335
+ top: -1px;
12336
+ line-height: 1em;
12337
+ }
12338
+
12339
+ a.research-icon {
12340
+ margin-bottom: 0.3rem;
12341
+ transition: transform 0.2s ease, background-color 0.2s ease, background-image 0.2s ease;
12342
+ }
12343
+ a.research-icon:hover, a.research-icon:focus {
12344
+ transform: translateY(-0.2rem);
12345
+ box-shadow: 0;
12346
+ }
12347
+
12348
+ .research-icon-orcid {
12349
+ background-color: #000000;
12350
+ }
12351
+
12352
+ .research-icon-googlescholar {
12353
+ background-color: #4287f6;
12354
+ }
12355
+
12356
+ .research-icon-scopus {
12357
+ background-color: #fe8300;
12358
+ }
12359
+
12360
+ .research-icon-stackoverflow {
12361
+ background-color: #f58025;
12362
+ }
12363
+
12364
+ .research-icon-wos {
12365
+ background-color: #5D33BF;
12366
+ }
12367
+
12368
+ .research-icon-round {
12369
+ border-radius: 100% !important;
12370
+ padding: 0.8rem;
12371
+ }
12372
+ .research-icon-round:before {
12373
+ border-radius: 100% !important;
12374
+ }
12375
+
12376
+ .research-icon-negative {
12377
+ padding: 0.5rem;
12378
+ background: transparent;
12379
+ transition: background 0.2s;
12380
+ }
12381
+ .research-icon-negative .icon {
12382
+ font-size: 1.5rem;
12383
+ color: #212121;
12384
+ transition: fill 0.2s;
12385
+ }
12386
+ .research-icon-negative:hover {
12387
+ background: #ff0000 !important;
12388
+ }
12389
+ .research-icon-negative:hover .icon {
12390
+ color: #fff !important;
12391
+ }
12392
+
12393
+ .research-icon-discrete .icon {
12394
+ transition: fill 0.2s ease;
12395
+ }
12396
+ .research-icon-discrete:not(:hover) {
12397
+ background: #e6e6e6;
12398
+ }
12399
+ .research-icon-discrete:not(:hover) .icon {
12400
+ color: #707070;
12401
+ }
12402
+
12403
+ .research-icon-list {
12404
+ display: flex;
12405
+ flex-flow: row wrap;
12406
+ align-items: center;
12407
+ margin: 0;
12408
+ }
12409
+ .research-icon-list li {
12410
+ margin-bottom: 0.25rem;
12411
+ }
12412
+ .research-icon-list li .research-icon {
12413
+ margin: 0;
12414
+ }
12415
+ .research-icon-list li:not(:last-child) {
12416
+ margin-right: 0.25rem;
12417
+ }
12418
+ @media (min-width: 992px) {
12419
+ .research-icon-list li {
12420
+ margin-bottom: 0;
12421
+ }
12422
+ }
12423
+
12304
12424
  .custom-select {
12305
12425
  border-color: #8e8e8e;
12306
12426
  }
@@ -12532,6 +12652,10 @@ a.social-icon:hover, a.social-icon:focus {
12532
12652
  background-color: #6364ff;
12533
12653
  }
12534
12654
 
12655
+ .social-icon-matrix {
12656
+ background-color: #000000;
12657
+ }
12658
+
12535
12659
  .social-icon-bluesky {
12536
12660
  background-color: #1185fe;
12537
12661
  }
@@ -14773,7 +14897,6 @@ ol.flickity-page-dots li:before {
14773
14897
  height: 100%;
14774
14898
  -o-object-fit: cover;
14775
14899
  object-fit: cover;
14776
- font-family: "object-fit: cover;"; /* stylelint-disable-line */
14777
14900
  }
14778
14901
 
14779
14902
  .media-map-over {
@@ -15766,7 +15889,6 @@ ol.flickity-page-dots li:before {
15766
15889
  object-fit: cover;
15767
15890
  -o-object-position: top center;
15768
15891
  object-position: top center;
15769
- font-family: "object-fit: cover;"; /* stylelint-disable-line */
15770
15892
  width: 100%;
15771
15893
  height: 100%;
15772
15894
  max-width: none;
@@ -17120,7 +17242,6 @@ a.nav-arrow:hover .icon-container {
17120
17242
  object-fit: cover;
17121
17243
  -o-object-position: center center;
17122
17244
  object-position: center center;
17123
- font-family: "object-fit: cover;"; /* stylelint-disable-line */
17124
17245
  width: 100%;
17125
17246
  height: 100%;
17126
17247
  }