mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-16 20:34:34 -04:00
* move the margin from themes to frss.css + delete font-size * same source code as normal view for author information
21 lines
315 B
SCSS
21 lines
315 B
SCSS
@use "variables";
|
|
|
|
/*=== READER VIEW */
|
|
/*================*/
|
|
#stream.reader {
|
|
.flux {
|
|
background: variables.$grey-light;
|
|
color: variables.$main-font-color;
|
|
border: none;
|
|
|
|
.content {
|
|
background-color: variables.$white;
|
|
border: none;
|
|
|
|
.author {
|
|
color: variables.$grey-medium-dark;
|
|
}
|
|
}
|
|
}
|
|
}
|