Skip to content

Commit 878301a

Browse files
israelperezglezcalvellido
andauthoredFeb 13, 2023
Integration Xebia Functional (#2855)
* upgrade 47degrees to xebia-functional * upgrade 47degrees to xebia-functional --------- Co-authored-by: Juan Valencia <juanvalencia@calvellido.es>
1 parent f9cda5b commit 878301a

10 files changed

+62
-36
lines changed
 

‎arrow-site/docs/_includes/_doc-wrapper.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
</div>
1010
<ul class="menu-doc-search">
1111
<li>
12-
<a class="menu-links" href="https://www.47deg.com/" title="47 Degrees">
12+
<a class="menu-links" href="https://www.47deg.com/" title="Xebia Functional">
1313
<span>Sponsored by</span>
14-
<img src="{{ '/img/docs/47deg-header-doc.svg' | relative_url }}" title="47 Degrees" alt="47 Degrees">
14+
<img src="{{ '/img/docs/xf-header-doc.svg' | relative_url }}" title="Xebia Functional" alt="Xebia Functional">
1515
</a>
1616
</li>
1717
<li>

‎arrow-site/docs/_includes/_footer.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<div class="wrapper">
33
<div class="footer-flex">
44
<div class="footer-dev">
5-
<div class="footer-47">
6-
<img id="footer-47-dark" src="/img/home/47deg-footer-brand.svg" title="47 Degrees" alt="47 Degrees">
7-
<img id="footer-47-white" src="/img/home/47deg-footer-brand-white.svg" title="47 Degrees" alt="47 Degrees">
5+
<div class="footer-xf">
6+
<img id="footer-xf-dark" src="/img/home/xf-footer-brand.svg" title="Xebia Functional" alt="Xebia Functional">
7+
<img id="footer-xf-white" src="/img/home/xf-footer-brand-white.svg" title="Xebia Functional" alt="Xebia Functional">
88
</div>
99
<p>Arrow is designed and developed by <a class="site-name" href="{{site.data.commons.github}}">{{ site.name }}</a>
10-
with support from <a class="company-link" href="https://www.47deg.com/">47 Degrees</a></p>
10+
with support from <a class="company-link" href="https://www.47deg.com/">Xebia Functional</a></p>
1111
</div>
1212
<ul class="footer-menu">
1313
{% for item in site.data.menu.nav %}

‎arrow-site/docs/_sass/components/common/_footer.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
width: $column-4;
1919
transition: color $base-duration $base-timing;
2020

21-
.footer-47 {
21+
.footer-xf {
2222
position: relative;
2323
margin-right: 1.25rem;
24-
#footer-47-dark {
24+
#footer-xf-dark {
2525
position: absolute;
2626
opacity: 1;
2727
}
28-
#footer-47-white {
28+
#footer-xf-white {
2929
opacity: 0;
3030
}
3131
}

‎arrow-site/docs/img/docs/47deg-header-doc.svg

-7
This file was deleted.
+17
Loading

‎arrow-site/docs/img/home/47deg-footer-brand-white.svg

-9
This file was deleted.

‎arrow-site/docs/img/home/47deg-footer-brand.svg

-9
This file was deleted.
Loading
Loading

‎arrow-site/docs/js/main-hovers.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const arrayHomeCodeBlock = Array.from(homeCodeBlock);
88
const siteNav = document.getElementById('site-nav');
99
const navBrandWhite = document.getElementById('nav-brand-white');
1010
const navBrandDark = document.getElementById('nav-brand-dark');
11-
const footerBrandWhite = document.getElementById('footer-47-white');
12-
const footerBrandDark = document.getElementById('footer-47-dark');
11+
const footerBrandWhite = document.getElementById('footer-xf-white');
12+
const footerBrandDark = document.getElementById('footer-xf-dark');
1313
const navLinks = siteNav.querySelectorAll('a');
1414
const arrayNavLinks = Array.from(navLinks);
1515
const navMenuLinks = document.querySelectorAll('.nav-menu-item a');

0 commit comments

Comments
 (0)
Please sign in to comment.