Skip to content

Commit 138598c

Browse files
committed
"Using CSS Frameworks" has been translated.
1 parent 207e880 commit 138598c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs/ko/using_css_frameworks.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# Using CSS Frameworks
22

3-
Although this may seem like a no brainer, I'd suggest you import your third-party CSS libraries into webpack using the [`style-loader`](https://github.com/webpack/style-loader), which is already setup for you.
3+
생각할 필요가 없는 것처럼 보일지 모르지만, 이미 설치되어있는 [`style-loader`](https://github.com/webpack/style-loader)를 사용하여 webpack으로 써드 파티 CSS 라이브러리를 가져와야합니다.
44

55
## Use Case
66

7-
Say you want to use [bootstrap](http://getbootstrap.com/), [bulma](http://bulma.io/), or [materialize](http://materializecss.com/) for your application. Go ahead and install your library from `npm` like you normally would, but instead of attaching the asset to `index.ejs` we will import the CSS in our JavaScript, specifically in `src/renderer/main.js`.
7+
애플리케이션에 [bootstrap](http://getbootstrap.com/), [bulma](http://bulma.io/) 또는 [materialize](http://materializecss.com/)를 사용하려고한다고 가정 해봅시다. 계속해서 평소처럼 `npm` 에서 라이브러리를 설치하세요. 다만 `index.ejs`에 asset을 첨부하는 대신 특별히 `src/renderer/main.js` 자바스크립트에 CSS를 import 하세요.
88

99
#### Example
1010

11-
Let's install `bulma`
11+
`bulma`를 설치합니다.
1212

1313
```bash
1414
npm install bulma --save
1515
```
1616

17-
Then inside `src/renderer/main.js` let's add this line.
17+
`src/renderer/main.js`에 이 라인을 추가합니다.
1818

1919
```bash
2020
import 'bulma/css/bulma.css'
2121
```
2222

23-
Alternatively, you can also include `bulma` from inside a component file.
23+
또는 component 파일 내부에서 `bulma`를 포함 할 수도 있습니다.
2424

2525
**App.vue**
2626

@@ -30,5 +30,4 @@ Alternatively, you can also include `bulma` from inside a component file.
3030
</style>
3131
```
3232

33-
Now `webpack` will know to load in `bulma` for our application and make it available in our production builds.
34-
33+
이제 `webpack`은 애플리케이션 용 `bulma`를 로드하여 프로덕션 빌드에서 사용할 수 있게 합니다.

0 commit comments

Comments
 (0)