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

25 lines
411 B
SCSS
Raw Normal View History

2022-04-10 13:07:01 +02:00
$icon-container-size: 3em;
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('@/assets/icons/kodi.svg');
2021-01-18 01:28:10 +01:00
}
.fa.fa-plex:before {
@include icon;
background: url('@/assets/icons/plex.svg');
2021-01-18 01:28:10 +01:00
}
2022-03-01 01:32:50 +01:00
.fa.fa-jellyfin:before {
@include icon;
background: url('@/assets/icons/jellyfin.svg');
2022-03-01 01:32:50 +01:00
}