Skip to content

rawnly/stockpapers-website

Repository files navigation

StockPapers Website

Download StockPapers on the AppStore

template

Styling

For convenience I've installed sass-resources-loader all the files in the styles/extra folder will be included in each sass file, so please DO NOT USE @import METHOD ANYWHERE FOR ANY REASON to avoid file duplicates in build.

Example:

/* styles/extra/_mixins.scss */

%backgroundRED {
	background: red;
}
/* styles/myPage.scss */

.redStuff {
	@extend %backgroundRED; // as you can see mixins.scss is not imported

	color: white;
	border-radius: 5px;
}

These 2 files above will be compiled in:

.redStuff {
	background: red;
	color: white;
	border-radius: 5px;
}