mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-13 19:01:56 +00:00
20 lines
323 B
CSS
20 lines
323 B
CSS
|
.trash { color:rgb(209, 91, 71); }
|
||
|
|
||
|
.user-list li {
|
||
|
display: flex;
|
||
|
border: none;
|
||
|
border-bottom: 1px lightgray solid;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
.user-list li:last-child {
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
.user-list li .user-info {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
.user-list li .trash {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
text-decoration: none;
|
||
|
}
|