Added hover effect to latest user on front page.
This commit is contained in:
parent
0cf328c05d
commit
cfa18e1a2b
1 changed files with 10 additions and 1 deletions
|
@ -87,9 +87,18 @@
|
|||
|
||||
&__latest {
|
||||
display: flex;
|
||||
padding: 8px;
|
||||
padding: 4px;
|
||||
margin: 4px;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
border-radius: 2px;
|
||||
transition: background-color .2s, box-shadow .2s;
|
||||
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: fade(#222, 60%);
|
||||
box-shadow: 0 1px 4px #222;
|
||||
}
|
||||
|
||||
&__avatar {
|
||||
width: 50px;
|
||||
|
|
Loading…
Add table
Reference in a new issue