UNPKG

@microblink/blinkinput-in-browser-sdk

Version:

A simple barcode scanning library for WebAssembly-enabled browsers.

42 lines (41 loc) 845 B
/** * Copyright (c) Microblink Ltd. All rights reserved. */ /** * Copyright (c) Microblink Ltd. All rights reserved. * * SASS variables, not customizable via CSS variables */ /** * Camera experiences */ :host { box-sizing: border-box; display: block; } :host a { display: block; margin: 0; padding: 0; width: 100%; height: 32px; line-height: 32px; color: var(--mb-component-button-classic-text-color); background: var(--mb-component-button-classic-background); text-align: center; text-decoration: none; font-family: var(--mb-font-family); font-size: var(--mb-component-button-classic-font-size); font-weight: var(--mb-component-button-classic-font-weight); } :host a:hover, :host a:active, :host a:focus { cursor: pointer; } :host(.disabled) { opacity: 0.5; } :host(.disabled) a { cursor: default; }