8000 AdamPetroff · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View AdamPetroff's full-sized avatar

Block or report AdamPetroff

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. yt-to-mindmap yt-to-mindmap Public

    TypeScript

  2. resizable-box resizable-box Public

    TypeScript

  3. smart-gpt smart-gpt Public

    JavaScript

  4. Fix for 100vh not taking into consid... Fix for 100vh not taking into consideration the bars on mobile browsers
    1
    index.tsx:
    2
    ```
    3
    if(typeof window !== "undefined") {
    4
      document.documentElement.style.setProperty('--vh', `${window.innerHeight/100}px`);
    5
    }
  5. setup for REM as the main size unit setup for REM as the main size unit
    1
    variables.scss:
    2
    ```
    3
    $bp-desktop-sm: 75em;     // 1200px
    4
    $bp-tablet-land: 62.5em;     // 1000px
    5
    $bp-tablet: 48em;     // 768px
  6. Beautiful blur/non blur pattern Beautiful blur/non blur pattern
    1
    backdrop-filter: brightness(90%) blur(20px);
    2
    -webkit-backdrop-filter: brightness(90%) blur(20px);
    3
    -moz-backdrop-filter: brightness(90%) blur(20px);
    4
    mask-image: repeating-radial-gradient( circle at 50% 50% center, var(--background), var(--background) 20px, rgba(255, 255, 255, 0.3) 20.5px, rgba(255, 255, 255, 0.3) 21px );
    5
    -webkit-mask-image: repeating-radial-gradient( circle at 50% 50%, var(--background), var(--background) 20px, rgba(255, 255, 255, 0.3) 20.5px, rgba(255, 255, 255, 0.3) 21px );
0