mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-29 01:30:16 +02:00
Merge remote-tracking branch 'origin/master' into manifestv3
This commit is contained in:
@@ -7,8 +7,11 @@ excludeFromSitemap: true
|
||||
|
||||
<div class="ta-c">
|
||||
<figure>
|
||||
<img src="/images/404.png" style="width:65vh" />
|
||||
<figcaption>Image by https://icons8.com</figcaption>
|
||||
<img src="/images/404.png" style="width: 65vh" />
|
||||
<figcaption style="opacity: 0.5">Image by https://icons8.com</figcaption>
|
||||
</figure>
|
||||
<p>Uh oh, the page you wanted to see isn't here. How about <a href="/">going to the homepage</a>?</p>
|
||||
<p style="margin-top: 2rem">
|
||||
Uh oh, the page you wanted to see isn't here. How about
|
||||
<a href="/">going to the homepage</a>?
|
||||
</p>
|
||||
</div>
|
||||
|
@@ -1,4 +1,4 @@
|
||||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
@@ -114,7 +114,7 @@
|
||||
padding: 1rem;
|
||||
max-width: var(--layout-max-width);
|
||||
margin: 0 auto;
|
||||
min-height: 55vh;
|
||||
min-height: calc(100dvh - 4rem);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 700px) {
|
||||
@@ -514,7 +514,7 @@
|
||||
A blazing fast & offline frontend playground in your browser
|
||||
</h2>
|
||||
<div style="margin-top: 30px" id="cta" class="mb-2">
|
||||
<a class="btn download-btn web-app-btn" href="/app/">
|
||||
<a class="btn download-btn web-app-btn" href="/create/">
|
||||
<span>Open Web App</span>
|
||||
</a>
|
||||
<p style="margin-top: 3px">
|
||||
|
@@ -8,7 +8,7 @@ Web Maker is available as a Web app and a Chrome extension. Web app is recommend
|
||||
|
||||
**Web app**
|
||||
|
||||
The web app requires no installation. Just [goto the app url](/app/). Once you open the app, it is available for offline use in future.
|
||||
The web app requires no installation. Just [goto the app url](/create/). Once you open the app, it is available for offline use in future.
|
||||
|
||||
**Chrome extension**
|
||||
|
||||
@@ -20,7 +20,7 @@ Here is the link to the Chrome extension 👉 [Chrome Web Store](https://chrome.
|
||||
|
||||
**Web app**
|
||||
|
||||
As mentioned, the Web app can be simply opened by visiting [https://webmaker.app/app/](/app/).
|
||||
As mentioned, the Web app can be simply opened by visiting [https://webmaker.app/create/](/create/).
|
||||
|
||||
**Chrome extension**
|
||||
|
||||
|
@@ -9,13 +9,13 @@ At rare times, you might find yourself in a situation where you are not able to
|
||||
Say, you want to turn off `autoPreview` (which runs your code automatically on fresh launch and then on subsequent changes). You can do so by opening the following URL:
|
||||
|
||||
```
|
||||
https://webmaker.app/app?settings=autoPreview:false
|
||||
https://webmaker.app/create?settings=autoPreview:false
|
||||
```
|
||||
|
||||
Say, you want to turn off monaco editor also:
|
||||
|
||||
```
|
||||
https://webmaker.app/app?settings=autoPreview:false,isMonacoEditorOn:false
|
||||
https://webmaker.app/create?settings=autoPreview:false,isMonacoEditorOn:false
|
||||
```
|
||||
|
||||
**Note**: Currently overrides work only for `autoPreview` and `isMonacoEditorOn` options. More coming soon.
|
||||
|
Reference in New Issue
Block a user