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