mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 00:23:43 +08:00
82031aaf16
This plugin is only useful for developers, however, making it core allows us to centralize any component modification in one commit. This integration also adds a new site_setting: `styleguide_admin_only` which allows to enable a styleguide on a live site while restricting visibility to admins only. By default, styleguide is disabled.
44 lines
578 B
SCSS
44 lines
578 B
SCSS
p[class*="font-"] {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.font-up-6 {
|
|
font-size: $font-up-6;
|
|
}
|
|
.font-up-5 {
|
|
font-size: $font-up-5;
|
|
}
|
|
.font-up-4 {
|
|
font-size: $font-up-4;
|
|
}
|
|
.font-up-3 {
|
|
font-size: $font-up-3;
|
|
}
|
|
.font-up-2 {
|
|
font-size: $font-up-2;
|
|
}
|
|
.font-up-1 {
|
|
font-size: $font-up-1;
|
|
}
|
|
.font-0 {
|
|
font-size: $font-0;
|
|
}
|
|
.font-down-1 {
|
|
font-size: $font-down-1;
|
|
}
|
|
.font-down-2 {
|
|
font-size: $font-down-2;
|
|
}
|
|
.font-down-3 {
|
|
font-size: $font-down-3;
|
|
}
|
|
.font-down-4 {
|
|
font-size: $font-down-4;
|
|
}
|
|
.font-down-5 {
|
|
font-size: $font-down-5;
|
|
}
|
|
.font-down-6 {
|
|
font-size: $font-down-6;
|
|
}
|