mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
17 lines
256 B
SCSS
17 lines
256 B
SCSS
// Support for BBCode styles like colors and font sizes
|
|
|
|
span {
|
|
&.bbcode-b {
|
|
font-weight: bold;
|
|
}
|
|
&.bbcode-i {
|
|
font-style: italic;
|
|
}
|
|
&.bbcode-u {
|
|
text-decoration: underline;
|
|
}
|
|
&.bbcode-s {
|
|
text-decoration: line-through;
|
|
}
|
|
}
|