Skip to content

Commit

Permalink
Merge pull request #60 from KotlinDevIanBore/main
Browse files Browse the repository at this point in the history
(Feat) Created MOH 362 Register template
  • Loading branch information
Rugute authored Jun 3, 2024
2 parents 69f3ceb + 10aae6e commit 47c7190
Show file tree
Hide file tree
Showing 15 changed files with 545 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"packages/*"
],
"scripts": {
"start": "openmrs develop --backend https://ngx.ampath.or.ke --sources packages/esm-*-app --api-url /amrs --spa-path /amrs/spa/ --port 8040",
"start": "openmrs develop --backend https://ngx.ampath.or.ke --sources packages/esm-report-app --api-url /amrs --spa-path /amrs/spa/ --port 8040",
"start:core": "openmrs develop --backend https://ngx.ampath.or.ke --sources packages/esm-ampath-core-app --api-url /amrs --spa-path /amrs/spa/ --port 8030",
"ci:publish": "yarn workspaces foreach --all --topological --exclude @ampath/esm-3.x-app npm publish --access public --tag latest",
"ci:prepublish": "yarn workspaces foreach --all --topological --exclude @ampath/esm-3.x-app npm publish --access public --tag next",
Expand Down
45 changes: 45 additions & 0 deletions packages/esm-report-app/src/registers/MOH-362/MOH-362.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
.register-container {
margin: 20px;
}

.register-header {
text-align: center;
margin-bottom: 20px;

}

.register-table {
width: 100%;
border-collapse: collapse;

th,
td {
border: 1px solid black;
padding: 8px;
text-align: center;
vertical-align: top;
}

th {
background-color: #f2f2f2;
}

thead tr:first-child th {
border-bottom: 2px solid black;
}

tbody tr:hover {
background-color: #f1f1f1;
}
}

.vertical-header {
display: flex;
flex-direction: column;
align-items: center;

div {
margin: 5px 0;
}
}

Loading

0 comments on commit 47c7190

Please sign in to comment.