mirror of
https://github.com/strapi/strapi.git
synced 2025-08-13 11:17:42 +00:00
Merge branch 'develop' into front/context-api
This commit is contained in:
commit
52e700d1ca
@ -1,16 +1,16 @@
|
|||||||
// Import variables
|
// Import variables
|
||||||
@import "variables/variables";
|
@import 'variables/variables';
|
||||||
@import "base/fonts";
|
@import 'base/fonts';
|
||||||
|
|
||||||
:global {
|
:global {
|
||||||
// Expose libs styles
|
// Expose libs styles
|
||||||
@import "libs/bootstrap/bootstrap";
|
@import 'libs/bootstrap/bootstrap';
|
||||||
@import "libs/fontawesome/fontawesome";
|
@import 'libs/fontawesome/fontawesome';
|
||||||
|
|
||||||
// Expose base styles
|
// Expose base styles
|
||||||
@import "base/bootstrap-override";
|
@import 'base/bootstrap-override';
|
||||||
@import "base/animations";
|
@import 'base/animations';
|
||||||
@import "base/animations";
|
@import 'base/animations';
|
||||||
|
|
||||||
// Set the global font-size in order
|
// Set the global font-size in order
|
||||||
// to be able to have `1rem = 10px`.
|
// to be able to have `1rem = 10px`.
|
||||||
@ -18,11 +18,6 @@
|
|||||||
font-size: 62.5%;
|
font-size: 62.5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
@ -412,6 +412,11 @@ const getType = ({ definition, attribute, name, tableExists = false }) => {
|
|||||||
case 'date':
|
case 'date':
|
||||||
case 'time':
|
case 'time':
|
||||||
case 'datetime':
|
case 'datetime':
|
||||||
|
if (client === 'pg') {
|
||||||
|
return 'timestamp with time zone';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'timestamp';
|
||||||
case 'timestamp':
|
case 'timestamp':
|
||||||
if (client === 'pg') {
|
if (client === 'pg') {
|
||||||
return 'timestamp with time zone';
|
return 'timestamp with time zone';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user