15 lines
211 B
SCSS
15 lines
211 B
SCSS
|
//contacts.scss
|
||
|
|
||
|
.contact {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
margin-top: 1em;
|
||
|
border-bottom: 1px dashed grey;
|
||
|
}
|
||
|
|
||
|
.contact img {
|
||
|
margin-right: 0.2rem;
|
||
|
width: 100px;
|
||
|
height:100px;
|
||
|
}
|