-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AbijithS-aot
committed
Nov 3, 2023
1 parent
f866537
commit 6f50f25
Showing
3 changed files
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* This file contains style for the main classes of application */ | ||
|
||
body { | ||
font-size: 16px; | ||
font-family: Nunito Sans, SemiBold; | ||
overflow: hidden; | ||
} | ||
|
||
.main-container{ | ||
max-height: calc(100vh - 59px); | ||
overflow-y: auto; | ||
background-color: var(--color-main-bg); | ||
} | ||
|
||
.min-hightcontainer{ | ||
min-height: calc(100vh - 164px); | ||
} |
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
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,28 @@ | ||
.custom-table { | ||
font-family: Arial, Helvetica, sans-serif; | ||
border-collapse: separate !important; | ||
border-spacing: 0 15px; | ||
width: 100%; | ||
border: none; | ||
|
||
td, th { | ||
padding: 20px; | ||
} | ||
|
||
tr { | ||
background-color: #FFFFFF; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
border: none; | ||
} | ||
|
||
th { | ||
padding-top: 12px; | ||
padding-bottom: 12px; | ||
text-align: left; | ||
background-color: #f0f6fb; | ||
padding-left: 8px; // Adjust the padding to your liking | ||
padding-right: 8px; // Adjust the padding to your liking | ||
margin: 0; | ||
border: none; | ||
} | ||
} |