-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from KotlinDevIanBore/main
(Feat) Created MOH 362 Register template
- Loading branch information
Showing
15 changed files
with
545 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
packages/esm-report-app/src/registers/MOH-362/MOH-362.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
|
Oops, something went wrong.