/*
 *	This code was created for Printr B.V. It is open source under the formide-client package.
 *	Copyright (c) 2017, All rights reserved, http://printr.nl
 */

printer-fan,
[printer-fan] {
    svg {
        animation-name: spinFan;
        animation-duration: 0;
        animation-timing-function: linear;
        animation-iteration-count: infinite;

        transform-origin: 50% 50%;
        display: inline-block;
    }
}

@keyframes spinFan {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
