discourse-rewind/assets/stylesheets/common/post-used-reactions.scss

44 lines
826 B
SCSS
Raw Permalink Normal View History

2025-01-02 22:15:10 +01:00
.-post-used-reactions {
2025-01-10 14:26:35 -06:00
.rewind-card {
@include rewind-border;
}
2024-12-20 18:56:02 +01:00
.rewind-reactions-chart {
display: flex;
flex-direction: column;
2024-12-20 15:39:07 -06:00
width: 100%;
2024-12-20 18:56:02 +01:00
}
.rewind-reactions-row {
2025-01-10 17:02:27 -06:00
display: grid;
grid-template-columns: 25px 50px 1fr;
2024-12-20 18:56:02 +01:00
gap: 1em;
2024-12-20 15:39:07 -06:00
border-bottom: 1px solid var(--primary-low);
padding: 0.5em 0;
}
.emoji {
height: 25px;
width: 25px;
}
.percentage {
font-weight: normal;
2025-01-10 21:08:47 -06:00
font-display: var(--pixel-text);
2024-12-20 15:39:07 -06:00
font-size: 16px;
2024-12-20 18:56:02 +01:00
}
.rewind-reactions-bar {
2024-12-20 15:39:07 -06:00
background: var(--tertiary-600);
border: 1px solid rgba(var(--primary-rgb), 0.2);
height: 25px;
2025-01-10 14:26:35 -06:00
border-radius: calc(var(--rewind-border-radius) * 0.75);
2024-12-20 15:39:07 -06:00
}
.rewind-total-reactions {
font-size: 12px;
font-weight: normal;
margin-top: 1em;
margin-left: auto;
2024-12-20 18:56:02 +01:00
}
}