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
konrad 9c66a7570a
All checks were successful
continuous-integration/drone/push Build is passing
Reorganize Styles (#45)
2019-12-19 22:09:23 +00:00

25 lines
344 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;
}
}