mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-11 19:08:49 -04:00
* Update dev dependencies stylelint SASS Major update for stylelint with breaking changes https://stylelint.io/migration-guide/to-14/ Applied automatic SASS migration to current syntax https://sass-lang.com/documentation/cli/migrator#migrations And a few manual fixes such as: https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/dollar-variable-no-missing-interpolation/README.md Other dev dependencies are minor updates. * RTLCSS * Fix color-hex-length bug * Implement make bin/composer * Update git hash
17 lines
300 B
SCSS
17 lines
300 B
SCSS
@use "variables";
|
|
|
|
/*=== READER VIEW */
|
|
/*================*/
|
|
#stream.reader .flux {
|
|
padding: 0 0 50px;
|
|
background: variables.$grey-light;
|
|
color: variables.$main-font-color;
|
|
border: none;
|
|
}
|
|
|
|
#stream.reader .flux .author {
|
|
margin: 0 0 10px;
|
|
color: variables.$grey-medium-dark;
|
|
font-size: 90%;
|
|
}
|