Merge branch 'develop' into front/context-api

This commit is contained in:
cyril lopez 2019-10-02 18:09:13 +02:00 committed by GitHub
commit 52e700d1ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 12 deletions

View File

@ -1,16 +1,16 @@
// Import variables
@import "variables/variables";
@import "base/fonts";
@import 'variables/variables';
@import 'base/fonts';
:global {
// Expose libs styles
@import "libs/bootstrap/bootstrap";
@import "libs/fontawesome/fontawesome";
@import 'libs/bootstrap/bootstrap';
@import 'libs/fontawesome/fontawesome';
// Expose base styles
@import "base/bootstrap-override";
@import "base/animations";
@import "base/animations";
@import 'base/bootstrap-override';
@import 'base/animations';
@import 'base/animations';
// Set the global font-size in order
// to be able to have `1rem = 10px`.
@ -18,11 +18,6 @@
font-size: 62.5%;
}
::-webkit-scrollbar {
display: none;
}
* {
-webkit-font-smoothing: antialiased;
}

View File

@ -412,6 +412,11 @@ const getType = ({ definition, attribute, name, tableExists = false }) => {
case 'date':
case 'time':
case 'datetime':
if (client === 'pg') {
return 'timestamp with time zone';
}
return 'timestamp';
case 'timestamp':
if (client === 'pg') {
return 'timestamp with time zone';