bigbuffet-rw/app/styles/components/group-sidebar-panel.scss

34 lines
511 B
SCSS
Raw Normal View History

2020-03-27 13:59:38 -07:00
.group-sidebar-panel {
2020-05-28 17:58:37 -07:00
&__items {
padding: 0 15px 15px;
2020-03-27 13:59:38 -07:00
2020-05-28 17:58:37 -07:00
&__show-all {
2020-05-31 16:44:20 -07:00
color: var(--primary-text-color);
2020-03-27 13:59:38 -07:00
}
2020-05-28 17:58:37 -07:00
}
2020-03-27 13:59:38 -07:00
2020-05-28 17:58:37 -07:00
&__item {
display: block;
2020-05-31 16:44:20 -07:00
color: var(--primary-text-color);
2020-05-28 17:58:37 -07:00
text-decoration: none;
margin-bottom: 15px;
2020-03-27 13:59:38 -07:00
2020-05-28 17:58:37 -07:00
&:last-child {
margin-bottom: 0;
}
2020-03-27 13:59:38 -07:00
2020-05-28 17:58:37 -07:00
&__title {
font-weight: bold;
}
2020-03-27 13:59:38 -07:00
2020-05-28 17:58:37 -07:00
&__meta {
font-size: 0.8em;
2020-06-06 20:55:00 -07:00
color: var(--primary-text-color--faint);
2020-03-27 13:59:38 -07:00
2020-05-28 17:58:37 -07:00
&__unread {
color: var(--brand-color);
2020-05-28 17:58:37 -07:00
}
2020-03-27 13:59:38 -07:00
}
2020-05-28 17:58:37 -07:00
}
}