* Refactor integrations * Adjust spacing for integration item --------- Co-authored-by: Nithin David <1277421+nithindavid@users.noreply.github.com>
42 lines
766 B
SCSS
42 lines
766 B
SCSS
.integrations-wrap {
|
|
.integration {
|
|
background: $color-white;
|
|
border: 1px solid $color-border;
|
|
border-radius: $space-smaller;
|
|
margin-bottom: $space-normal;
|
|
padding: $space-normal;
|
|
|
|
.integration--image {
|
|
display: flex;
|
|
height: 10rem;
|
|
width: 10rem;
|
|
|
|
img {
|
|
max-width: 100%;
|
|
padding: $space-medium;
|
|
}
|
|
}
|
|
|
|
.integration--type {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin: 0 var(--space-normal);
|
|
}
|
|
|
|
.integration--title {
|
|
font-size: var(--font-size-large);
|
|
}
|
|
|
|
.button-wrap {
|
|
@include flex;
|
|
@include flex-align(center, middle);
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.help-wrap {
|
|
padding-left: $space-large;
|
|
}
|