https://github.com/rawnly/stockpapers-website
StockPapers('s) website
https://github.com/rawnly/stockpapers-website
app stockpapers website
Last synced: 11 months ago
JSON representation
StockPapers('s) website
- Host: GitHub
- URL: https://github.com/rawnly/stockpapers-website
- Owner: rawnly
- Created: 2019-01-19T15:04:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-06T12:16:13.000Z (about 7 years ago)
- Last Synced: 2025-05-19T11:46:00.677Z (about 1 year ago)
- Topics: app, stockpapers, website
- Language: TypeScript
- Homepage: http://get.stockpapers.app
- Size: 12.7 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StockPapers Website
> Download StockPapers on the [AppStore](https://get.stockpapers.app)

## Styling
For convenience I've installed [`sass-resources-loader`](https://github.com/shakacode/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:
```scss
/* styles/extra/_mixins.scss */
%backgroundRED {
background: red;
}
```
```scss
/* 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:
```scss
.redStuff {
background: red;
color: white;
border-radius: 5px;
}
```