Fix auto-prefixer workflow (#971)
Signed-off-by: Emruz Hossain <hossainemruz@gmail.com>
This commit is contained in:
parent
0090f7b1fa
commit
f2e549772d
9 changed files with 98 additions and 88 deletions
|
@ -22,7 +22,8 @@
|
|||
}
|
||||
|
||||
.card-img-top {
|
||||
object-fit: cover;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
@include transition();
|
||||
}
|
||||
|
||||
|
@ -61,7 +62,8 @@
|
|||
&:focus {
|
||||
.card-img-top {
|
||||
transform: scale(1.2);
|
||||
object-fit: cover;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
@include transition();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,8 @@ a {
|
|||
|
||||
&:hover,
|
||||
&:focus {
|
||||
text-decoration: get-light-color('hover-over-accent-color') underline;
|
||||
-webkit-text-decoration: get-light-color('hover-over-accent-color') underline;
|
||||
text-decoration: get-light-color('hover-over-accent-color') underline;
|
||||
color: get-light-color('hover-over-accent-color');
|
||||
@include transition();
|
||||
}
|
||||
|
@ -66,7 +67,8 @@ html[data-theme='dark'] {
|
|||
|
||||
&:hover,
|
||||
&:focus {
|
||||
text-decoration: get-dark-color('hover-over-accent-color') underline;
|
||||
-webkit-text-decoration: get-dark-color('hover-over-accent-color') underline;
|
||||
text-decoration: get-dark-color('hover-over-accent-color') underline;
|
||||
color: get-dark-color('hover-over-accent-color');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -96,6 +96,10 @@ html[data-theme='dark'] {
|
|||
}
|
||||
}
|
||||
.gist {
|
||||
&::-moz-selection{
|
||||
background: get-dark-color('text-color');
|
||||
color: get-dark-color('inverse-text-color');
|
||||
}
|
||||
&::selection{
|
||||
background: get-dark-color('text-color');
|
||||
color: get-dark-color('inverse-text-color');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue