Last active
April 19, 2017 11:33
-
-
Save danielgek/f048f4b6b0d51f4d04c8b1475ebf1462 to your computer and use it in GitHub Desktop.
SASS WEBPACK NATIVESCRIPT
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
@import '~nativescript-theme-core/scss/light'; | |
@import '~/variables'; | |
$background: $primary; | |
// ActionBar | |
$ab-background: $primary; | |
$ab-color: white ; | |
@import '~nativescript-theme-core/scss/index'; | |
... rest of css |
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
$primary: #327af3 ; | |
$accent: #192F74 ; |
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
@import 'app-common'; | |
@import '~nativescript-theme-core/scss/platforms/index.android'; | |
... rest of css |
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
@import 'app-common'; | |
@import '~nativescript-theme-core/scss/platforms/index.ios'; | |
... rest of css |
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
@import "./app-platform.css" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment