Skip to content
This repository was archived by the owner on Apr 16, 2022. It is now read-only.

simple fix for lesson container #137

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions app-main/.vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"ExpandedNodes": [
"",
"\\public",
"\\public\\js"
],
"SelectedNode": "\\public\\index.html",
"PreviewInSolutionExplorer": false
}
1,021 changes: 1,021 additions & 0 deletions app-main/.vs/app-main/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added app-main/.vs/app-main/v16/.suo
Binary file not shown.
Binary file added app-main/.vs/slnx.sqlite
Binary file not shown.
15 changes: 15 additions & 0 deletions app-main/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
2 changes: 2 additions & 0 deletions app-main/public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,13 @@ body {
margin: 0 0 30px 0;
}

/* added height to the body so text will not overflow */
.modal-lesson-body {
display: flex;
align-items: flex-start;
flex-direction: column;
width: 95%;
height: calc(100vh - 250px);
margin: 0 auto;
}

Expand Down