Skip to content

Commit

Permalink
feat: #1055 (cont) - bet-tips-links;
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Feb 28, 2023
1 parent d4d3ce7 commit c47c9df
Showing 1 changed file with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,39 @@ NOTE: [HINT] use (CTRL+SPACE) to select a (class) (id) style
class="row-space-end"
style="width: auto;"
>

<!--
[ℹ] tip-link box SHOW/HIDE
-->
{#if FIXTURE_D?.tips && FIXTURE_D?.tips[server_side_language]}
<a
rel="nofollow noreferrer"
aria-label="tip_link_redirect"
href={FIXTURE_D?.tips[
server_side_language
]}
target="_blank"
style="width: inherit;"
>
<div
class="
tip-box
m-r-16
"
>
<p
class="
s-12
w-500
color-black
"
>
TIP
</p>
</div>
</a>
{/if}

<!--
[ℹ] bet-site SHOW/HIDE
-->
Expand Down Expand Up @@ -450,6 +483,16 @@ NOTE: [HINT] auto-fill/auto-complete iniside <style> for var() values by typing/
max-width: 85px;
}
div.tip-box {
padding: 6px 12px;
border-radius: 4px;
border: 1px solid var(--grey-shade);
} div.tip-box:hover {
border: 1px solid var(--primary) !important;
} div.tip-box:hover p {
color: var(--primary);
}
span.visibility-none {
visibility: hidden;
}
Expand Down

0 comments on commit c47c9df

Please sign in to comment.