Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Google BigQuery #7

Merged
merged 11 commits into from
May 27, 2022
26 changes: 26 additions & 0 deletions lib/assets/connection_cell/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ button {
gap: 8px;
}

.draggable {
width: 100%;
justify-content: center;
text-align: center;
background-color: var(--gray-50);
font-size: 0.875rem;
border: 1px solid var(--gray-200);
border-radius: 0.5rem;
color: var(--gray-400);
padding: 10px;
}

.header {
display: flex;
justify-content: flex-start;
Expand All @@ -56,6 +68,10 @@ button {
color: var(--gray-600);
}

input[type="file"] {
display: none;
}

input[type="number"] {
appearance: textfield;
}
Expand Down Expand Up @@ -116,6 +132,16 @@ input[type="number"] {
flex-grow: 1;
}

.help-box {
padding: 8px 16px;
font-weight: 500;
color: var(--gray-500);
}

.help-box a {
color: var(--gray-500);
}

.info-box {
margin-bottom: 24px;
padding: 16px;
Expand Down
Loading