-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Sass not building in last release (#674)
* Fix Sass not building in last release Fixes #672 * Update style.scss * Update Table.vue * Document Sass
- Loading branch information
1 parent
57de0c5
commit ed7c365
Showing
4 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Sass | ||
|
||
Vue-Good-Table's styling is written in Sass. The source files are made available as part of the npm dependency. | ||
|
||
**Vue-Good-Table's root Sass file:** | ||
|
||
```scss | ||
@import "../node_modules/vue-good-table/src/styles/style.scss"; | ||
``` | ||
|
||
Vue-Good-Table has an optional feature to filter a column based on a multi-select dropdown. We use Vue-Select for this feature. | ||
|
||
**Vue-Select's root Sass file** | ||
|
||
```scss | ||
@import "../node_modules/vue-select/src/scss/vue-select.scss"; | ||
``` |