Ionic 2 RC3 am try to import login page scss

Ionic 2 am try to import login page scss file theme in variable.scss. But it shows on error.

// App Theme
// --------------------------------------------------
// Ionic apps can have different themes applied, which can
// then be future customized. This import comes last
// so that the above variables are used and Ionic’s
// default are overridden.

@import “ionic.theme.default”;

@import “…/pages/login/page-login”;

ERROR
sass: F:/IonicExamples/MyApp2/src/theme/variables.scss, line: 64
File to import not found or unreadable: …/pages/login/page-login Parent style sheet:
F:/IonicExamples/MyApp2/src/theme/variables.scss

L64: @import “…/pages/login/page-login”;
[00:00:59] sass update failed

Importing scss file in variable.scss. It shows an above the error.

Thanks!.

Check the error…[quote=“ManivannanDurairaj, post:1, topic:71087”]
File to import not found or unreadable: …/pages/login/page-login Parent style sheet:
[/quote]

File path is not valid
it should be …/pages/login/login

Thanks sanjib_dev. Its working.