0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-15 17:24:47 +08:00
discourse/plugins/discourse-rewind/assets/stylesheets/common/report.scss
Martin Brennan 95bb1bdf30
FEATURE: Bundle discourse-rewind plugin in core (#36409)
We think this is in a good place to move into core
and prepare for a wider release after the additional
work that has been done this year.

---------

Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
Co-authored-by: Kris Aubuchon <kris.aubuchon@discourse.org>
Co-authored-by: Rafael dos Santos Silva <xfalcox@gmail.com>
2025-12-08 11:38:48 +10:00

40 lines
799 B
SCSS
Vendored

.rewind-report-page {
display: flex;
justify-content: center;
padding: 1em;
box-sizing: border-box;
font-size: var(--font-up-2);
width: 100%;
max-width: 700px;
margin: 0 auto;
flex-direction: column;
@media (width <= 768px) {
padding: 0.75em;
}
}
.rewind-report {
display: flex;
flex-direction: column;
}
.rewind-report-container {
display: flex;
max-width: 100%;
}
.rewind-report-title {
align-self: start;
padding: 0.25em 1em 0.25em;
margin-bottom: -2px;
background: var(--rewind-black);
margin-left: 0;
position: relative;
font-size: var(--font-down-1);
text-align: left;
border-radius: 4px 4px 0 0;
border-top: 2px solid var(--rewind-green);
border-left: 2px solid var(--rewind-green);
border-right: 2px solid var(--rewind-green);
}