This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Figma squircle G2 path — smoothing=0.6, bezier→arc→bezier per corner | |
| * p=1.6r, coefficients: 1.04r, 0.76r, 0.546r, 0.109r (from Figma blog) */ | |
| @utility rounded { | |
| --r: var(--radius-md); | |
| @apply border-shape-squircle; | |
| } | |
| @utility rounded-* { | |
| --r: --value(--radius-*, [length], [*]); | |
| @apply border-shape-squircle; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal | |
| cd /d "%~dp0" | |
| net session >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| powershell -NoProfile -ExecutionPolicy Bypass ^ | |
| -Command "Start-Process -FilePath '%~f0' -Verb RunAs" | |
| exit /b |