Skip to content
Merged
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
6 changes: 1 addition & 5 deletions static/browse-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
const goButton = dom.getElementById('goButton')
const loginButtonArea = document.getElementById("loginButtonArea");
const webIdArea = dom.getElementById('webId')
const banner = dom.getElementById('inputArea')
const banner = dom.getElementById('PageHeader')
const pageHeader = dom.getElementById('PageHeader')

function updateHeaderOffset () {
Expand Down Expand Up @@ -139,12 +139,8 @@

<footer id="PageFooter" role="contentinfo"></footer>
<style>
body {
padding-top: calc(var(--browse-header-offset, var(--app-header-height, 3.8rem)) + 0.35rem);
}
.header-mash {
padding:1em !important;
background-color:#ccbbbb !important;
}
.input-row {
}
Expand Down
6 changes: 1 addition & 5 deletions static/browse.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
const goButton = dom.getElementById('goButton')
const loginButtonArea = document.getElementById("loginButtonArea");
const webIdArea = dom.getElementById('webId')
const banner = dom.getElementById('inputArea')
const banner = dom.getElementById('PageHeader')
const pageHeader = dom.querySelector('solid-panes-header')

function updateHeaderOffset () {
Expand Down Expand Up @@ -142,15 +142,11 @@
</solid-ui-provider>

<style>
body {
padding-top: calc(var(--browse-header-offset, var(--app-header-height, 3.8rem)) + 0.35rem);
}
.outline-view {
width: 100%;
}
.header-mash {
padding:1em !important;
background-color:#ccbbbb !important;
}
.input-row {
}
Expand Down
15 changes: 3 additions & 12 deletions webpack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -195,18 +195,9 @@ export default (env, args) => {
}
}

// Keep both bundle names in sync during watch/dev runs because downstream
// servers and templates may reference either path.
return [
developmentBundle,
{
...developmentBundle,
output: {
...developmentBundle.output,
filename: 'mashlib.min.js'
}
}
]
// Use a single devServer config for watch/dev runs to avoid duplicate port
// conflicts in webpack-dev-server.
return developmentBundle
}

// UMD Minified, everything bundled
Expand Down
Loading