Skip to content

Commit f6465e8

Browse files
author
Nikos Katsikanis
committed
border box default
1 parent e77cdc8 commit f6465e8

File tree

5 files changed

+16
-34
lines changed

5 files changed

+16
-34
lines changed

.github/workflows/auto-apply-triage-label-and-default-project.yaml

Lines changed: 0 additions & 32 deletions
This file was deleted.

css/common.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,11 @@ a {
4040
text-decoration: none;
4141
font-weight: bold;
4242
}
43+
44+
*,
45+
*::before,
46+
*::after {
47+
box-sizing: border-box;
48+
margin: 0;
49+
font-weight: normal;
50+
}

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
</head>
2525
<body class="flex flex-col">
2626
<div class="flex">
27-
<nav data-component="nav"></nav>
2827
<!--
29-
<nav data-component="nav" data-header-bar="true" data-burger-px="600"></nav>
28+
<nav data-component="nav"></nav>
3029
-->
30+
<nav data-component="nav" data-header-bar="true" data-burger-px="600"></nav>
3131
<main data-component="router" data-use-hash style="padding: 1rem; width: 100%">
3232
<!--components in /pages that will be fetched by router when user clicks on a -->
3333
</main>

js/routes/form.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// File: routes/form.js
2+
// Purpose: A simple form to test the form components
3+
14
export default (hostComponent) => {
25
hostComponent.innerHTML = '';
36

js/store.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// File js/store.js
2+
// Purpose: Create a store object to manage shared state and dispatch events when state changes
3+
14
export const store = (() => {
25
let state = {
36
sharedCount: 0,

0 commit comments

Comments
 (0)