@microblink/blinkinput-in-browser-sdk
Version:
A simple barcode scanning library for WebAssembly-enabled browsers.
41 lines (38 loc) • 681 B
CSS
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*
* SASS variables, not customizable via CSS variables
*/
/**
* Camera experiences
*/
:host {
display: block;
padding: 0;
}
:host img {
display: block;
width: 24px;
height: 24px;
-webkit-animation: rotation 700ms linear infinite;
animation: rotation 700ms linear infinite;
}
:host(.large) img {
width: 40px;
height: 40px;
}
@-webkit-keyframes rotation {
100% {
transform-origin: center;
transform: rotate(360deg);
}
}
@keyframes rotation {
100% {
transform-origin: center;
transform: rotate(360deg);
}
}