24 lines
314 B
SCSS
24 lines
314 B
SCSS
|
.bio-card {
|
||
|
h3 {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.bio-card-twitter {
|
||
|
margin-bottom: $unit * 2;
|
||
|
font-size: 16px;
|
||
|
text-decoration: none;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
max-height: 72px;
|
||
|
overflow: hidden;
|
||
|
cursor: pointer;
|
||
|
font-size: 14px;
|
||
|
line-height: 24px;
|
||
|
}
|
||
|
}
|