Fix user layout in Follow(ers) tab
This commit is contained in:
parent
d9e0065c4e
commit
8bcfc91847
|
@ -140,6 +140,7 @@ export default {
|
|||
height: 36px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -149,6 +149,8 @@ export default {
|
|||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -505,6 +505,7 @@ export default {
|
|||
height: 36px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -82,17 +82,28 @@ export default {
|
|||
.user {
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
padding: 4px 12px 8px;
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid var(--theme-border-color);
|
||||
cursor: pointer;
|
||||
align-items: center;
|
||||
|
||||
.fa-icon {
|
||||
font-size: 0.9em;
|
||||
width: auto;
|
||||
height: 1em;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
|
||||
img {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -123,14 +134,20 @@ export default {
|
|||
|
||||
.follow {
|
||||
color: var(--theme-primary-color);
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.unfollow {
|
||||
color: #409eff;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.requested {
|
||||
color: var(--theme-primary-color);
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue