Skip to content

Commit

Permalink
feat: re-design site so the new console works better
Browse files Browse the repository at this point in the history
Redesigned the site, so, the console works better. Switched to using custom js based resize handles for the editor section. Updated deps, fixed bugs.
  • Loading branch information
okikio committed Feb 25, 2022
1 parent cddb60e commit f3b386f
Show file tree
Hide file tree
Showing 14 changed files with 669 additions and 449 deletions.
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/43_config_ports/
ports:
- port: 3000
onOpen: open-preview
onOpen: ignore
- port: 3001
onOpen: ignore

Expand Down
4 changes: 2 additions & 2 deletions env.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const ENABLE_SW = true;
export const USE_SHAREDWORKER = true;
export const ENABLE_SW = false;
export const USE_SHAREDWORKER = false;
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"hastscript": "^7.0.2",
"husky": "^7.0.4",
"jstransformer-markdown-it": "^2.1.0",
"postcss": "^8.4.6",
"postcss": "^8.4.7",
"postcss-csso": "^6.0.0",
"postcss-scss": "^4.0.3",
"posthtml-parser": "^0.10.2",
Expand All @@ -83,7 +83,7 @@
"rehype-external-links": "^1.0.1",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"sass": "^1.49.8",
"sass": "^1.49.9",
"standard-version": "^9.3.2",
"tailwindcss": "^3.0.23",
"tiny-glob": "^0.2.9",
Expand Down
70 changes: 35 additions & 35 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ main {
}

header {
@apply p-6 text-center;
@apply py-6 text-center;

h1 {
@apply text-5xl font-bold mb-2;
Expand Down Expand Up @@ -214,11 +214,11 @@ main {
// my-8
}

h3#console {
@apply text-xl pb-0;
.tab-style {
// @apply text-lg;
text-decoration: underline;
text-decoration-style: wavy;
text-underline-offset: 0.4rem;
text-underline-offset: 0.2rem;
}

h2#faq {
Expand Down

0 comments on commit f3b386f

Please sign in to comment.