platypush/platypush/backend/http/webapp/src/style/icons.scss

23 lines
359 B
SCSS
Raw Normal View History

2021-01-18 01:28:10 +01:00
@mixin icon {
2021-01-05 00:50:24 +01:00
content: ' ';
background-size: 1em 1em;
width: 1em;
height: 1em;
display: inline-block;
}
2021-01-18 01:28:10 +01:00
.fa.fa-kodi:before {
@include icon;
background: url('/icons/kodi.svg');
}
.fa.fa-plex:before {
@include icon;
background: url('/icons/plex.svg');
}
2022-03-01 01:32:50 +01:00
.fa.fa-jellyfin:before {
@include icon;
background: url('/icons/jellyfin.svg');
}