Skip to content

Commit

Permalink
fix: #1096;
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Mar 6, 2023
1 parent b89f76d commit 6a8e1f4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,10 @@ NOTE: [HINT] auto-fill/auto-complete iniside <style> for var() values by typing/
max-width: 85px;
}
div.fixtures-scores-box {
width: 14px;
}
.team-lost-style {
color: var(--grey) !important;
}
Expand Down Expand Up @@ -539,7 +543,7 @@ NOTE: [HINT] auto-fill/auto-complete iniside <style> for var() values by typing/
*/
.team-name-txt-mobile {
font-weight: 400;
/* font-weight: 400; */
}
@media only screen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ NOTE: [HINT] use (CTRL+SPACE) to select a (class) (id) style
<p
class="
s-14
w-500
w-400
color-grey
cursor-pointer
">
Expand All @@ -243,17 +243,19 @@ NOTE: [HINT] use (CTRL+SPACE) to select a (class) (id) style
<p
class="
s-14
w-500
w-400
color-grey
">
{WIDGET_T_DATA?.live || 'Live'} ({numOfFixturesLive || 0})
</p>
<img
src={vec_pulse_dot}
alt='pulsating-dot'
width="16"
height="16"
/>
{#if numOfFixturesLive != undefined || numOfFixturesLive != 0}
<img
src={vec_pulse_dot}
alt='pulsating-dot'
width="16"
height="16"
/>
{/if}
</div>
</div>
</div>
Expand Down Expand Up @@ -332,6 +334,8 @@ NOTE: [HINT] auto-fill/auto-complete iniside <style> for var() values by typing/
}
div#fixture-filter-opt-box-outer {
padding: 0 20px;
} div#fixture-filter-opt-box-outer div.fixture-filter-box p {
font-weight: 500;
}
div#livescores-dates-box > div.livescore-date-box,
div#calendar-out-box {
Expand Down

0 comments on commit 6a8e1f4

Please sign in to comment.