mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
Prevents images from overflowing in tavern chat, guild sidebars, tasks, and anywhere else using Markdown Closes https://github.com/HabitRPG/habitica/issues/9171
35 lines
400 B
SCSS
35 lines
400 B
SCSS
.markdown {
|
|
> p {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
h1 {
|
|
line-height: 1.17;
|
|
}
|
|
|
|
h3 {
|
|
color: $gray-10;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
h4 {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a {
|
|
color: $blue-10;
|
|
|
|
&:hover, &:active, &:focus {
|
|
color: $blue-10;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
}
|