Skip to content
View klgh's full-sized avatar
πŸ‘©β€πŸ’»
πŸ‘©β€πŸ’»

Organizations

@sportngin

Block or report klgh

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
klgh/README.md

Pinned Loading

  1. is-it-snowing-in-atlanta is-it-snowing-in-atlanta Public

    Shows "weather" or not it's snowing in Atlanta

    JavaScript 1

  2. VS Code Settings w/touchbar options VS Code Settings w/touchbar options
    1
    {
    2
      "workbench.iconTheme": "material-icon-theme",
    3
      "workbench.colorTheme": "New Moon",
    4
      "workbench.startupEditor": "newUntitledFile",
    5
      "material-icon-theme.activeIconPack": "react",
  3. scrollbar.scss scrollbar.scss
    1
     ::-webkit-scrollbar {
    2
            -webkit-appearance: none;
    3
            width: 6px;
    4
          }
    5
          ::-webkit-scrollbar-thumb {
  4. my fav prettier formats my fav prettier formats
    1
    {
    2
      "semi": false,
    3
      "trailingComma": "none",
    4
      "bracketSpacing": true,
    5
      "singleQuote": true,
  5. reset.scss reset.scss
    1
    /* makes sizing simpler */
    2
    *,
    3
    *::before,
    4
    *::after {
    5
      box-sizing: border-box;