File size: 792 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | @import "variables";
.help-center__container-footer {
height: auto;
padding: 16px;
// hide when empty
&:empty {
display: none;
}
.button.help-center-contact-page__button {
align-items: center;
background-color: transparent;
border: 1px solid var(--studio-gray-10);
color: var(--studio-gray-100);
display: flex;
justify-content: center;
line-height: 1;
margin-bottom: 0;
padding: 5px;
text-wrap: balance;
width: 100%;
&:hover {
color: var(--studio-gray-100);
border-color: var(--color-neutral-20);
box-shadow: none;
outline: none;
}
&:focus {
border-color: transparent;
box-shadow: none;
outline: $help-center-blue solid 2px;
}
svg {
margin-right: 10px;
vertical-align: middle;
fill: var(--studio-gray-100);
}
}
}
|