Skip to content

Commit

Permalink
new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AbijithS-aot committed Nov 3, 2023
1 parent f866537 commit 6f50f25
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
17 changes: 17 additions & 0 deletions forms-flow-theme/src/baseStyle.scss
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);
}
2 changes: 2 additions & 0 deletions forms-flow-theme/src/bootstrapOverride.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
}

.table th {
padding: 8px 20px;
vertical-align: inherit !important;
}

.table td {
padding: 8px 20px;
vertical-align: inherit !important;
}
28 changes: 28 additions & 0 deletions forms-flow-theme/src/components/custom-table.scss
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;
}
}

0 comments on commit 6f50f25

Please sign in to comment.