Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: add import of .css file into another .css file
After changing `css-loader` with `css2json-loader`, we have an issue that module imports of local css files doesn't work anymore - #1098. As it turns out that we don't have applications that test this scenario, we decided to add such an import in demo JavaScript application.
  • Loading branch information
Fatme committed Nov 22, 2019
commit c5e4552b98bed3ddb1efd17020a67887060b8df1
1 change: 1 addition & 0 deletions demo/JavaScriptApp/app/app.android.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ of writing your own CSS rules. For a full list of class names in the theme
refer to http://docs.nativescript.org/ui/theme.
*/
@import '~nativescript-theme-core/css/core.light.css';
@import 'app.common.css';

ActionBar {
background-color: #7F9;
Expand Down
Empty file.
1 change: 1 addition & 0 deletions demo/JavaScriptApp/app/app.ios.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ of writing your own CSS rules. For a full list of class names in the theme
refer to http://docs.nativescript.org/ui/theme.
*/
@import '~nativescript-theme-core/css/core.light.css';
@import 'app.common.css';

ActionBar {
background-color: #999;
Expand Down