summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLeandro Alves <leandroalves@yahooinc.com>2022-06-23 13:41:49 +0200
committerLeandro Alves <leandroalves@yahooinc.com>2022-06-23 13:41:49 +0200
commitac0cac356d366bf7187e2f6651d60269ee5ac76d (patch)
tree2d3237d1b920ea4a3cc81f6ad3017e2f8e522284 /client
parent1af159a866b1bc66a4050f14e75a81a47babd1c5 (diff)
Add basic global style
Diffstat (limited to 'client')
-rw-r--r--client/js/app/src/app/styles/global.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/client/js/app/src/app/styles/global.js b/client/js/app/src/app/styles/global.js
new file mode 100644
index 00000000000..900ae5d9304
--- /dev/null
+++ b/client/js/app/src/app/styles/global.js
@@ -0,0 +1,39 @@
+export const styles = (theme) => ({
+ '*, *::before, *::after': {
+ boxSizing: 'border-box',
+ },
+
+ '*': {
+ margin: '0',
+ },
+
+ html: {
+ height: '100%',
+ },
+
+ body: {
+ height: '100%',
+ WebkitFontSmoothing: 'antialiased',
+ lineHeight: theme.lineHeight,
+ background: theme.cr.getAppBackground(),
+ color: theme.cr.getHighContrastText(),
+ ...theme.fn.fontStyles(),
+ },
+
+ 'img, picture, video, canvas, svg': {
+ display: 'block',
+ },
+
+ 'input, button, textarea, select': {
+ font: 'inherit',
+ },
+
+ 'p, h1, h2, h3, h4, h5, h6': {
+ overflowWrap: 'break-word',
+ },
+
+ '#root': {
+ height: '100%',
+ isolation: 'isolate',
+ },
+});