@use "../core/instances" as *;

.documentationpage {
    @include keyframes(fade) {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .keyframes_example {
        @include animation(fade 1s infinite alternate);
        @include whs(60px);
        background-color: $c5;
    }
}
