1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 17:42:48 +00:00

client - wip user account page

This commit is contained in:
2018-01-11 23:59:56 -06:00
parent dc7149eb8b
commit 57663b802c
14 changed files with 303 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
.avatar-list {
display: flex;
flex-wrap: wrap;
padding: 20px;
padding-left: 10px;
&__item {
margin-left: 10px;
margin-bottom: 10px;
cursor: pointer;
position: relative;
transition: all 0.1s ease-in-out;
top: 0;
&:hover, &__selected {
top: -1px;
box-shadow: 0 0 10px #00C0FF;
}
}
}