commit 65d279d5b71a437a6654ffeeba2f3b270c50e4ec parent 15d62c278580b57c4ba0640f21626bd4e34cb63b Author: Yohanes Bandung <bandungpenting@gmail.com> Date: Sat, 24 Aug 2019 01:43:40 +0700 refactor(Stylings) => added footer style Diffstat:
| M | src/components/Footer.re | | | 4 | ++-- |
| A | src/favicon.ico | | | 0 | |
| M | src/index.html | | | 6 | ++++++ |
| A | src/manifest.json | | | 15 | +++++++++++++++ |
4 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/src/components/Footer.re b/src/components/Footer.re @@ -3,13 +3,13 @@ module Styles = { let footer = style([ - width(`ch(100.0)), + width(`percent(100.0)), paddingTop(`px(30)), marginTop(`px(0)), marginLeft(`auto), marginRight(`auto), marginBottom(`em(1.0)), - maxWidth(em(50.0)), + maxWidth(`em(50.0)), ]); }; diff --git a/src/favicon.ico b/src/favicon.ico Binary files differ. diff --git a/src/index.html b/src/index.html @@ -3,6 +3,12 @@ <head> <meta charset="UTF-8"> <title>YBBond</title> + <meta + name="viewport" + content="width=device-width, initial-scale=1, shrink-to-fit=no" + /> + <meta name="theme-color" content="#000000" /> + <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> </head> <body> diff --git a/src/manifest.json b/src/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "YBBond", + "name": "Yohanes Bandung Bondowoso", + "icons": [ + { + "src": "./favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +}