stacker.news/components/text.module.css

34 lines
464 B
CSS
Raw Normal View History

2021-04-14 23:56:29 +00:00
.text {
font-size: 90%;
2021-06-27 22:28:30 +00:00
font-family: inherit;
2021-10-29 17:56:31 +00:00
word-break: break-word;
2021-11-12 22:39:52 +00:00
line-height: 1rem;
2021-06-27 22:28:30 +00:00
}
.text p {
margin-bottom: .5rem;
2021-04-14 23:56:29 +00:00
white-space: pre-wrap;
word-break: break-word;
2021-06-27 22:28:30 +00:00
}
.text pre {
margin-bottom: .5rem;
}
.text > *:last-child {
margin-bottom: 0;
}
.text img {
max-width: 100%;
max-height: 300px;
}
.text table {
width: auto;
}
.text blockquote {
border-left: 2px solid #212529;
padding-left: 1rem;
2021-04-14 23:56:29 +00:00
}