Skip to content

Instantly share code, notes, and snippets.

View TinsFox's full-sized avatar
🎯
Focusing

TinsFox

🎯
Focusing
View GitHub Profile
@TinsFox
TinsFox / utilities.css
Created May 11, 2024 02:49
simple tailwindcss utilities
.pointer-events-none { pointer-events : none }
.pointer-events-auto { pointer-events : auto }
.visible { visibility : visible }
.invisible { visibility : hidden }
.collapse { visibility : collapse }
.static { position : static }
.fixed { position : fixed }
.absolute { position : absolute }
.relative { position : relative }
.sticky { position : sticky }
@TinsFox
TinsFox / index.html
Created November 23, 2023 10:06
electron 调用系统能力
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style type="text/css">
.webview {
height: 945px;