webapp/src/components/Feed/Sidebar.module.scss

75 lines
1.0 KiB
SCSS
Raw Normal View History

2023-01-30 23:09:33 +00:00
.sidebar {
max-height: calc(100vh - 120px);
2023-03-01 17:53:23 +00:00
overflow: hidden;
2023-01-30 23:09:33 +00:00
position: sticky;
top: 120px;
2023-03-01 17:53:23 +00:00
&:hover {
overflow: scroll;
padding-right: 1rem;
}
2023-01-30 23:09:33 +00:00
}
2023-01-25 22:13:01 +00:00
.counter {
2023-02-10 01:19:20 +00:00
@include font-size(1.2rem);
2023-01-25 22:13:01 +00:00
align-items: center;
align-self: flex-start;
background: #f6f6f6;
border-radius: 0.8rem;
display: flex;
font-weight: 500;
padding: 0.2em 0.5em;
}
.unread {
position: relative;
&::after {
background: #2638d9;
border-radius: 100%;
content: '';
display: inline-block;
height: 0.5em;
left: 100%;
margin-left: 0.3em;
position: absolute;
top: 0.5em;
width: 0.5em;
}
}
.settings {
display: flex;
justify-content: space-between;
2023-01-30 23:09:33 +00:00
margin-bottom: 2em;
2023-01-25 22:13:01 +00:00
}
a {
img {
transition: filter 0.3s;
}
&:hover {
img {
filter: invert(1);
}
}
}
.icon {
display: inline-block;
line-height: 1;
height: 2rem;
margin-right: 0.5em;
vertical-align: middle;
width: 2.2rem;
img {
height: 100%;
object-fit: contain;
object-position: center;
width: 100%;
}
}