52 lines
954 B
JavaScript
Raw Normal View History

2019-10-23 15:49:03 +02:00
import styled from 'styled-components';
2019-10-24 14:41:06 +02:00
import colors from '../../assets/styles/colors';
2019-10-23 15:49:03 +02:00
const List = styled.ul`
padding-left: 15px;
margin-bottom: 0;
max-height: 242px;
overflow-y: scroll;
li {
position: relative;
padding-left: 15px;
margin-bottom: 20px;
&::before {
content: '•';
position: absolute;
top: calc(50% - 2px);
left: 0;
font-weight: bold;
display: block;
width: 0.5em;
height: 0.5em;
color: ${colors.leftMenu.darkGrey};
line-height: 5px;
font-size: 10px;
}
&:last-of-type {
margin-bottom: 0;
}
}
a {
display: block;
2019-10-24 14:41:06 +02:00
&.active {
p {
font-weight: 600;
}
}
2019-10-23 15:49:03 +02:00
p {
color: ${colors.leftMenu.black};
font-size: 13px;
line-height: 16px;
2019-10-24 14:41:06 +02:00
display: flex;
justify-content: space-between;
2019-10-23 15:49:03 +02:00
}
&:hover {
text-decoration: none;
}
}
`;
export default List;