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