Skip to content

Commit ba446d8

Browse files
committed
update modals and favicons
1 parent c666572 commit ba446d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+99764
-264
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ node_modules/
22
build/
33
.gitignore
44
coverage/
5+
.todo

config/template.html

Lines changed: 18 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@
4141
property="og:description"
4242
content="Customizable blobs as SVG and Flutter Widget. Create random or fixed blobs, loop, animate, clip them with ease"
4343
/>
44-
<meta property="og:image" content="https://blobs.app/poster.png" />
44+
<meta
45+
property="og:image"
46+
content="https://blobs.app/posters/blobs_app_poster.png"
47+
/>
4548

4649
<!-- Twitter -->
4750
<meta property="twitter:card" content="summary_large_image" />
@@ -54,84 +57,38 @@
5457
property="twitter:description"
5558
content="Customizable blobs as SVG and Flutter Widget. Create random or fixed blobs, loop, animate, clip them with ease"
5659
/>
57-
<meta property="twitter:image" content="https://blobs.app/poster.png" />
60+
<meta
61+
property="twitter:image"
62+
content="https://blobs.app/posters/blobs_app_poster.png"
63+
/>
5864
<meta name="viewport" content="width=device-width, initial-scale=1" />
5965

60-
<link
61-
rel="apple-touch-icon"
62-
sizes="57x57"
63-
href="favicons/apple-icon-57x57.png"
64-
/>
65-
<link
66-
rel="apple-touch-icon"
67-
sizes="60x60"
68-
href="favicons/apple-icon-60x60.png"
69-
/>
70-
<link
71-
rel="apple-touch-icon"
72-
sizes="72x72"
73-
href="favicons/apple-icon-72x72.png"
74-
/>
75-
<link
76-
rel="apple-touch-icon"
77-
sizes="76x76"
78-
href="favicons/apple-icon-76x76.png"
79-
/>
80-
<link
81-
rel="apple-touch-icon"
82-
sizes="114x114"
83-
href="favicons/apple-icon-114x114.png"
84-
/>
85-
<link
86-
rel="apple-touch-icon"
87-
sizes="120x120"
88-
href="favicons/apple-icon-120x120.png"
89-
/>
90-
<link
91-
rel="apple-touch-icon"
92-
sizes="144x144"
93-
href="favicons/apple-icon-144x144.png"
94-
/>
95-
<link
96-
rel="apple-touch-icon"
97-
sizes="152x152"
98-
href="favicons/apple-icon-152x152.png"
99-
/>
10066
<link
10167
rel="apple-touch-icon"
10268
sizes="180x180"
103-
href="favicons/apple-icon-180x180.png"
104-
/>
105-
<link
106-
rel="icon"
107-
type="image/png"
108-
sizes="192x192"
109-
href="favicons/android-icon-192x192.png"
69+
href="/favicons/apple-touch-icon.png"
11070
/>
11171
<link
11272
rel="icon"
11373
type="image/png"
11474
sizes="32x32"
115-
href="favicons/favicon-32x32.png"
75+
href="/favicons/favicon-32x32.png"
11676
/>
11777
<link
11878
rel="icon"
11979
type="image/png"
120-
sizes="96x96"
121-
href="favicons/favicon-96x96.png"
80+
sizes="16x16"
81+
href="/favicons/favicon-16x16.png"
12282
/>
83+
<link rel="manifest" href="/favicons/site.webmanifest" />
12384
<link
124-
rel="icon"
125-
type="image/png"
126-
sizes="16x16"
127-
href="favicons/favicon-16x16.png"
85+
rel="mask-icon"
86+
href="/favicons/safari-pinned-tab.svg"
87+
color="#5bbad5"
12888
/>
129-
<link rel="manifest" href="favicons/manifest.json" />
89+
<link rel="shortcut icon" href="/favicons/favicon.ico" />
13090
<meta name="msapplication-TileColor" content="#ffffff" />
131-
<meta
132-
name="msapplication-TileImage"
133-
content="/favicons/ms-icon-144x144.png"
134-
/>
91+
<meta name="msapplication-config" content="/favicons/browserconfig.xml" />
13592
<meta name="theme-color" content="#ffffff" />
13693
</head>
13794
<body>

config/webpack.base.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ module.exports = function ({ plugins }) {
6060
chunkFilename: "[id].[hash].css",
6161
}),
6262
new CopyPlugin({
63-
patterns: [{ from: "src/assets/favicons", to: "favicons" }],
63+
patterns: [
64+
{ from: "src/assets/favicons", to: "favicons" },
65+
{ from: "src/assets/posters", to: "posters" },
66+
],
6467
}),
6568
],
6669
resolve: {

src/app.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ html body {
5252
border-radius: 4px;
5353
}
5454

55+
pre {
56+
margin: 0 !important;
57+
}
5558
pre > code {
5659
overflow: auto;
5760
width: 100%;

0 commit comments

Comments
 (0)