This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/components/teams.scss

25 lines
349 B
SCSS

ul.teams {
padding: 0;
margin-left: 0;
overflow: hidden;
li {
list-style: none;
margin: 0;
border-bottom: 1px solid $border;
a {
color: #363636;
display: block;
padding: 0.5rem 1rem;
&:hover {
background: darken(#fff, 2%);
}
}
}
li:last-child {
border-bottom: none;
}
}