2018-10-03 09:04:30 -05:00
|
|
|
.add-data-source-header {
|
2019-03-11 05:33:15 -05:00
|
|
|
margin-bottom: $space-xl;
|
2018-10-05 14:55:34 -05:00
|
|
|
padding-top: $spacer;
|
2018-10-03 09:04:30 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-10-04 04:42:17 -05:00
|
|
|
.add-data-source-search {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2019-03-12 02:10:31 -05:00
|
|
|
margin-bottom: $space-lg;
|
2018-10-04 04:42:17 -05:00
|
|
|
}
|
|
|
|
|
2018-10-03 09:04:30 -05:00
|
|
|
.add-data-source-grid {
|
|
|
|
display: grid;
|
2018-10-04 04:42:17 -05:00
|
|
|
grid-template-columns: repeat(2, 1fr);
|
2018-10-03 09:04:30 -05:00
|
|
|
grid-row-gap: 10px;
|
|
|
|
grid-column-gap: 10px;
|
2018-10-04 04:42:17 -05:00
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
}
|
2018-10-03 09:04:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.add-data-source-grid-item {
|
2018-10-05 04:33:41 -05:00
|
|
|
padding: 15px;
|
2018-10-03 09:04:30 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
background: $card-background;
|
|
|
|
box-shadow: $card-shadow;
|
2018-10-06 12:22:16 -05:00
|
|
|
color: $text-color;
|
2018-10-03 09:04:30 -05:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $card-background-hover;
|
2018-10-06 12:22:16 -05:00
|
|
|
color: $text-color-strong;
|
2018-10-03 09:04:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-data-source-grid-item-text {
|
|
|
|
font-size: $font-size-h5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-data-source-grid-item-logo {
|
2019-03-12 02:10:31 -05:00
|
|
|
margin: 0 $space-md;
|
2018-10-03 09:04:30 -05:00
|
|
|
width: 55px;
|
|
|
|
}
|