ec01d33b50
Simplifies the grunt watch task for sass. Renames sass partials with leading underscores. Flattens stylesheet directory. The only remaining raw css file is options.css. Move globally-relevant styles to _global. Shrink overall font size.
17 lines
392 B
SCSS
17 lines
392 B
SCSS
// Signal for the Browser
|
|
// A universally compatible extension
|
|
// Below is the ship's manifest
|
|
|
|
// Global Settings, Variables, and Mixins
|
|
@import 'variables';
|
|
@import 'global';
|
|
|
|
// Build the main view
|
|
@import 'index';
|
|
@import 'conversation';
|
|
|
|
// Not sure where something goes, or
|
|
// implementing a known CSS hack? Add it
|
|
// to `shame.scss`, and it will be fixed!
|
|
|
|
@import 'shame';
|