Skip to content

Commit 8f0e65d

Browse files
authored
Enhancement: Branding Styling Tweaks (#338)
1 parent e9aa94d commit 8f0e65d

File tree

1 file changed

+24
-11
lines changed

1 file changed

+24
-11
lines changed

src/elements/Branding.svelte

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,28 @@
33
</script>
44

55
<style>
6-
div {
7-
font-size: 0.66rem;
8-
height: 1.3rem;
6+
.bn-branding {
7+
font-size: 0.75rem;
8+
font-family: inherit;
99
margin: 0.4rem;
1010
display: flex;
11+
justify-content: center;
12+
width: 100%;
13+
align-items: center;
14+
opacity: 0.3;
1115
}
1216
1317
a {
14-
display: flex;
15-
justify-content: center;
16-
width: 100%;
17-
opacity: 0.8;
1818
color: inherit;
19+
display: flex;
20+
margin-left: 0.25rem;
21+
align-items: center;
22+
}
23+
24+
.bn-logo {
25+
height: 0.9rem;
26+
margin-left: 0.25rem;
27+
margin-bottom: 0.1rem;
1928
}
2029
2130
img {
@@ -24,14 +33,18 @@
2433
}
2534
</style>
2635

27-
<div>
36+
<div class="bn-branding">
37+
Powered by
2838
<a
2939
href="https://blocknative.com"
3040
class="bn-onboard-clickable"
3141
target="_blank"
3242
rel="noopener noreferrer">
33-
<img
34-
alt="Blocknative Logo"
35-
src={darkMode ? ' https://www.blocknative.com/hubfs/Infrastructure%20Rebrand/bn-structure-logo-white.svg' : 'https://www.blocknative.com/hubfs/Infrastructure%20Rebrand/bn-structure-logo-black.svg'} />
43+
Blocknative
44+
<div class="bn-logo">
45+
<img
46+
alt="Blocknative Logo"
47+
src={darkMode ? 'https://cdn2.hubspot.net/hubfs/5118396/Company Logos/bn-line-logo-white.svg' : 'https://cdn2.hubspot.net/hubfs/5118396/Company Logos/bn-line-logo-black.svg'} />
48+
</div>
3649
</a>
3750
</div>

0 commit comments

Comments
 (0)