vikunja-frontend/src/styles/components/teams.scss

26 lines
390 B
SCSS
Raw Normal View History

ul.teams {
2018-12-25 16:03:51 +01:00
padding: 0;
margin-left: 0;
overflow: hidden;
li {
2018-12-25 16:03:51 +01:00
list-style: none;
margin: 0;
border-bottom: 1px solid $border;
a {
2018-12-25 16:03:51 +01:00
color: #363636;
display: block;
padding: 0.5rem 1rem;
transition: background-color $transition;
2018-12-25 16:03:51 +01:00
&:hover {
background: $grey-100;
2018-12-25 16:03:51 +01:00
}
}
}
li:last-child {
2018-12-25 16:03:51 +01:00
border-bottom: none;
}
}