.list {
background-color: red;
& .list-item {
color: white;
& .list-item-icon {
margin-right: 5px;
}- To sync your repository, first you must have a pointer from the original repository. Let's call it
upstream
$ git remote -v # List all remote repository from your fork
$ git remote add upstream [https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git]Let us say the original repository is https://github.com/google/material-design-lite
- Next, fetch the upstream branch
$ git fetch upstream
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
Show hidden characters
| { | |
| "extends": [ | |
| "next/core-web-vitals", | |
| "plugin:jsx-a11y/recommended", | |
| "plugin:react/recommended", | |
| "prettier" | |
| ], | |
| "plugins": [ "prettier", "jsx-a11y" ], | |
| "rules": { | |
| "prettier/prettier": [ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| const a: number[] = []; | |
| function time(fn: () => void): number { | |
| const now = Date.now(); | |
| fn(); | |
| return Date.now() - now; | |
| } | |
| function unshift(number: number) { |
OlderNewer