wuespace/telestion-client

View on GitHub
packages/telestion-client-template/template/src/index.css

Summary

Maintainability
Test Coverage
:not([class*='spectrum-']) {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
}

/**
 * make electron app feel more native
 *
 *   * Prevent dragging all HTML elements, specially:
 *       - images
 *       - links (anchors)
 *
 *   * Prevent text selection
 */

*,
*::after,
*::before {
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-app-region: no-drag;
    cursor: default;
}