mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 10:48:12 +00:00
Merge branch 'develop' into front/context-api
This commit is contained in:
commit
52e700d1ca
@ -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;
|
||||
}
|
||||
|
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user