Fix admin channels link design

This commit is contained in:
cyril lopez 2017-10-24 15:02:35 +02:00
parent 160ffe8626
commit 25b6ec055d
2 changed files with 12 additions and 4 deletions

View File

@ -81,26 +81,34 @@
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
padding-top: 3rem; padding-top: 3rem;
// width: 669px;
> a { > a {
height: 58px; height: 58px;
width: 204px; width: 204px;
border: 1px solid #E3E9F3; border: 1px solid #E3E9F3;
&:hover {
border: 1px solid #CAD0DA;
}
&:after { &:after {
height: 34px; height: 34px;
width: 102px; width: 120px;
display: inline-table; margin-bottom: 10px;
display: inline-flex;
margin-top: 13px;
background-image: url('../../assets/images/logo_github.png'); background-image: url('../../assets/images/logo_github.png');
background-size: contain; background-size: contain;
content: ''; content: '';
} }
&:first-child { &:first-child {
&:after { &:after {
height: 32px;
width: 156px;
background-image: url('../../assets/images/logo_stack_overflow.png'); background-image: url('../../assets/images/logo_stack_overflow.png');
} }
} }
&:last-child { &:last-child {
&:after { &:after {
height: 32px;
width: 156x;
background-image: url('../../assets/images/logo_slack.png'); background-image: url('../../assets/images/logo_slack.png');
} }
} }