Skip to content
Snippets Groups Projects
Commit e6169485 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

Issue #3039256 by kjay, shaal, smaz: Improve Umami demo blockquote layout on smaller screen sizes

(cherry picked from commit bcbcbdca)
parent 303ea604
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,25 @@ body {
blockquote {
background: #f4f2e9;
margin-bottom: 1.28rem;
padding: 3rem;
margin: 0 0 1.28rem;
padding: 1.5rem;
}
blockquote p:last-child {
margin-bottom: 0;
}
/* Small */
@media screen and (min-width: 30rem) { /* 480px */
blockquote {
margin: 0 1.5rem 1.28rem;
padding: 1.5rem;
}
}
/* Medium */
@media screen and (min-width: 40rem) { /* 640px */
blockquote {
margin: 0 2.5rem 1.28rem;
padding: 3rem;
}
}
blockquote > * {
color: #000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment