1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix declaration-colon-space-after (CSS)

This commit is contained in:
MrTimscampi 2020-01-19 14:50:51 +01:00
parent f290604615
commit 0c0853a80a
4 changed files with 13 additions and 11 deletions

View file

@ -283,13 +283,13 @@ div[data-role=controlgroup] a.ui-btn-active {
}
.activitylogUserPhoto {
height:1.71em;
width:1.71em;
border-radius:100%;
margin-right:.5em;
background-size:cover;
background-repeat:no-repeat;
background-position:center;
height: 1.71em;
width: 1.71em;
border-radius: 100%;
margin-right: .5em;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
@media all and (min-width:40em) {

View file

@ -224,12 +224,14 @@
@-moz-keyframes spin {
100% {
-moz-transform: rotate(360deg);
transform:rotate(360deg);
}
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform:rotate(360deg);
}
}