1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-04-21 22:52:42 +02:00

Merge branch 'develop' into patch-1

This commit is contained in:
B.C.Rikko 2019-10-17 16:31:14 +09:00 committed by GitHub
commit 96721c2e79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 20 additions and 25 deletions

View File

@ -35,7 +35,8 @@ Este proyecto se apega al Código de Conducta convenido para Contribuyentes. Al
```sh
$ npm install
```
3. Ejecuta el servidor de desarrollo:
3. Ejecuta el servidor de desarrollo:
To view all available components in an interactive interface, use storybook.
```sh
$ npm run storybook
```

View File

@ -35,7 +35,8 @@
```sh
$ npm install
```
3. 開発用サーバを起動する:
3. 開発用サーバを起動する:
インタラクティブインターフェースで使用可能なすべてのコンポーネントを表示するには、storybookを使ってください
```sh
$ npm run storybook
```

View File

@ -35,7 +35,8 @@ Nós estamos muito felizes de você querer contribuir para o projeto! Os próxim
```sh
$ npm install
```
3. Inicie o servidor de desenvolvimento:
3. Inicie o servidor de desenvolvimento:
To view all available components in an interactive interface, use storybook.
```sh
$ npm run storybook
```

View File

@ -35,7 +35,8 @@
```sh
$ npm install
```
3. 启动开发服务器:
3. 启动开发服务器:
To view all available components in an interactive interface, use storybook.
```sh
$ npm run storybook
```

View File

@ -35,7 +35,8 @@
```sh
$ npm install
```
3. Запустите сервер:
3. Запустите сервер:
To view all available components in an interactive interface, use storybook.
```sh
$ npm run storybook
```

View File

@ -35,7 +35,8 @@ We're really happy you want to contribute to the project! ❤️ The following s
```sh
$ npm install
```
3. Start up the dev server:
3. Start up the dev server:
To view all available components in an interactive interface, use storybook.
```sh
$ npm run storybook
```

View File

@ -84,20 +84,6 @@ NES.css is compatible with the newest version of the following browsers:
Untested
* IE/Edge
## Storybook
To view all available components in an interactive interface, use storybook.
```bash
git clone https://github.com/nostalgic-css/NES.css
cd NES.css
npm install
npm run storybook
```
![Storybook Demo](assets/storybook-demo.gif "Storybook Demo")
## Copyright and license
Code and documentation copyright 2018 [B.C.Rikko](https://github.com/BcRikko). Code released under the MIT License. Docs released under Creative Commons.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

View File

@ -112,7 +112,9 @@
},
"lint-staged": {
"scss/**/*.scss": [
"npm run postbuild"
"npm run prebuild:stylelint",
"npm run postbuild",
"git add"
],
"*.js": [
"eslint '.storybook/**/*.js' 'story/**/*.js'"

View File

@ -44,10 +44,11 @@
&.is-dark {
@include rounded-corners(true);
background: $base-color;
color: $background-color;
background: $base-color;
border-image-outset: 2;
box-shadow: 0px 0px 0 8px $base-color;
box-shadow: 0 0 0 8px $base-color;
&.from-left,
&.from-right {

View File

@ -8,7 +8,7 @@
@include compact-rounded-corners();
width: calc(100% - #{2*$border-size});
width: calc(100% - #{2 * $border-size});
padding: 0.5rem 1rem;
margin: 4px;
background-clip: padding-box;

View File

@ -11,7 +11,7 @@
$colors: ($base-color, map-get($default-colors, "shadow"));
position: relative;
width: calc(100% - #{2*$border-size});
width: calc(100% - #{2 * $border-size});
margin: 4px;
select {