[go: nahoru, domu]

Skip to content
View narekmal's full-sized avatar
Block or Report

Block or report narekmal

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. c-sharp-questions c-sharp-questions Public

    Tricky C# questions and answers

    9

  2. vscode-run-git-difftool vscode-run-git-difftool Public

    Visual Studio Code extension for running git difftool through context menu

    TypeScript 3 1

  3. react-native-todo react-native-todo Public

    React Native To-Do App with Redux

    JavaScript 1

  4. wp-share-buttons wp-share-buttons Public

    WordPress plugin for adding social share buttons to posts

    PHP

  5. x-default-browser x-default-browser Public

    Forked from jakub-g/x-default-browser

    💻 Detect default browser, cross-platform

    JavaScript

  6. SCSS utilities for using vw units SCSS utilities for using vw units
    1
    # The Function
    2
    
                  
    3
    Suppose we want a `div` to have `50px` width when the screen width is `500px` and a proportionate width when the screen width changes. We do math: `(50/500)*100 = 10` and set `width: 10vw`. The following simple function helps make our intention more clear:
    4
    ```scss
    5
    @function get-vw($valueAtWidth, $width) {