Skip to content

Commit

Permalink
build(package): update ad-engine to 0.0.69
Browse files Browse the repository at this point in the history
[1] ────
Update '@betarena/[email protected]'
[2] ────
Update 'Author-Main.svelte' for `ZoneId=4' support for the authors page advertisement, using overlaying effect for target container.
  • Loading branch information
migbash committed Dec 13, 2024
1 parent 11a515f commit 8b8bab9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"vitest/coverage": "vitest run --coverage"
},
"dependencies": {
"@betarena/ad-engine": "0.0.68",
"@betarena/ad-engine": "0.0.69",
"@betarena/scores-lib": "4.0.40",
"@lukeed/uuid": "2.0.1",
"@metamask/sdk": "0.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@

<div
id="{CNAME}"
data-betarena-zone-id=4
class:dark-mode-1={theme == 'Dark'}
class:light-mode-1={theme == 'Light'}
>

<div class="article-header" class:reverse={VIEWPORT_MOBILE_INIT[1]}>
Expand Down Expand Up @@ -655,7 +658,7 @@
-->
<div
id='content'
data-betarena-zone-id=2,3,4
data-betarena-zone-id=2,3
>
{@html widgetData.article.data?.content}
</div>
Expand All @@ -681,6 +684,19 @@
div#author⮕w⮕author-content⮕main
{
position: relative;
z-index: 1;
&.dark-mode-1
{
background-color: var(--dark-theme);
}
&.light-mode-1
{
background-color: var(--white);
}
.author-link:hover {
.author-name {
color: var(--primary) !important;
Expand Down

0 comments on commit 8b8bab9

Please sign in to comment.