34 lines
644 B
SCSS
34 lines
644 B
SCSS
|
.sharing-buttons {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
.resp-sharing-button__icon,
|
||
|
.resp-sharing-button__link {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.resp-sharing-button__link {
|
||
|
text-decoration: none;
|
||
|
margin: 0.5em;
|
||
|
}
|
||
|
|
||
|
.resp-sharing-button {
|
||
|
border-radius: 5px;
|
||
|
transition: 25ms ease-out;
|
||
|
padding: 0.5em 0.75em;
|
||
|
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
|
||
|
}
|
||
|
|
||
|
.resp-sharing-button__icon svg {
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
margin-right: 0.4em;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
.resp-sharing-button--small svg {
|
||
|
margin: 0;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
}
|