Skip to content

Commit

Permalink
border box default
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikos Katsikanis committed Feb 3, 2025
1 parent e77cdc8 commit f6465e8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 34 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/auto-apply-triage-label-and-default-project.yaml

This file was deleted.

8 changes: 8 additions & 0 deletions css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,11 @@ a {
text-decoration: none;
font-weight: bold;
}

*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
font-weight: normal;
}
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
</head>
<body class="flex flex-col">
<div class="flex">
<nav data-component="nav"></nav>
<!--
<nav data-component="nav" data-header-bar="true" data-burger-px="600"></nav>
<nav data-component="nav"></nav>
-->
<nav data-component="nav" data-header-bar="true" data-burger-px="600"></nav>
<main data-component="router" data-use-hash style="padding: 1rem; width: 100%">
<!--components in /pages that will be fetched by router when user clicks on a -->
</main>
Expand Down
3 changes: 3 additions & 0 deletions js/routes/form.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// File: routes/form.js
// Purpose: A simple form to test the form components

export default (hostComponent) => {
hostComponent.innerHTML = '';

Expand Down
3 changes: 3 additions & 0 deletions js/store.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// File js/store.js
// Purpose: Create a store object to manage shared state and dispatch events when state changes

export const store = (() => {
let state = {
sharedCount: 0,
Expand Down

0 comments on commit f6465e8

Please sign in to comment.