Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash authored Feb 2, 2023
1 parent 97cea6b commit 4b69ba0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@
class="
cursor-pointer
"
class:activeOpt={selectedOptTableMobile == 2}
on:click={() => toggle_mobile_form()}>
<p
class="
Expand Down Expand Up @@ -808,6 +809,12 @@
text-align: center;
border-radius: 8px;
margin: 20px 15px 15px 0;
} #form-view-opt-box.activeOpt {
border: 1px solid #F5620F;
} #form-view-opt-box.activeOpt p {
color: #F5620F !important;
} #form-view-opt-box:hover p {
color: #292929 !important;
}
/* old - table approach */
Expand Down Expand Up @@ -971,7 +978,8 @@
/* border-bottom: 16px solid transparent; */
}
.dark-background-1 div.stand-view-opt-box:hover p {
.dark-background-1 div.stand-view-opt-box:hover p,
.dark-background-1 #form-view-opt-box:hover p {
color: white !important;
}
Expand Down
10 changes: 5 additions & 5 deletions src/routes/[lang=lang]/[sport]/[fixture=fixture]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,11 @@
{FIXTURE_H2H_TRANSLATION}
{FIXTURES_ODDS_T}
/>
<StandingsWidget
{STANDINGS_T}
{STANDINGS_DATA}
{FIXTURE_INFO}
/>
<StatisticsWidget
{FIXTURE_STATISTICS}
{FIXTURE_STATISTICS_TRANSLATION}
Expand All @@ -430,11 +435,6 @@
{FIXTURE_INFO}
{FIXTURE_PROBS_TRANSLATION}
/>
<StandingsWidget
{STANDINGS_T}
{STANDINGS_DATA}
{FIXTURE_INFO}
/>
<AboutWidget
{FIXTURE_ABOUT}
{FIXTURE_ABOUT_TRANSLATION}
Expand Down
10 changes: 5 additions & 5 deletions src/routes/[sport]/[fixture=fixture]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,11 @@
{FIXTURE_H2H_TRANSLATION}
{FIXTURES_ODDS_T}
/>
<StandingsWidget
{STANDINGS_T}
{STANDINGS_DATA}
{FIXTURE_INFO}
/>
<StatisticsWidget
{FIXTURE_STATISTICS}
{FIXTURE_STATISTICS_TRANSLATION}
Expand All @@ -430,11 +435,6 @@
{FIXTURE_INFO}
{FIXTURE_PROBS_TRANSLATION}
/>
<StandingsWidget
{STANDINGS_T}
{STANDINGS_DATA}
{FIXTURE_INFO}
/>
<AboutWidget
{FIXTURE_ABOUT}
{FIXTURE_ABOUT_TRANSLATION}
Expand Down

0 comments on commit 4b69ba0

Please sign in to comment.