Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: changed line height to normal #106

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 20 additions & 18 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@
border: none !important;
}

.MuiBox-root {
line-height: normal;
}

.MuiDataGrid-footerContainer > div {
margin-top: -40px;
}
Expand Down Expand Up @@ -129,8 +133,8 @@
}

.MuiCard-root {
box-shadow: 0 0 #0000,0 0 #0000,var(--tw-shadow) !important;
box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow) !important;
box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow) !important;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.white-text {
Expand Down Expand Up @@ -183,7 +187,6 @@
text-align: center;
}


.card-view.expanded {
position: absolute;
top: 0;
Expand Down Expand Up @@ -213,24 +216,23 @@

.card-view .MuiTablePagination-root {
margin-top: -40px;

}

@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}

70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}

100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
}

/* Workaround for Needle not handling menu placement of dropdowns on modals */
Expand All @@ -242,10 +244,10 @@
/* End workaround */

/* Workaround for cleaning the Gantt chart UI */
.gantt-wrapper > div > div:first-child > div:first-child > div:first-child > div> div:not(:first-child) {
.gantt-wrapper > div > div:first-child > div:first-child > div:first-child > div > div:not(:first-child) {
display: none;
}
.gantt-wrapper > div > div > div > div> div> div> div:not(:first-child) {
.gantt-wrapper > div > div > div > div > div > div > div:not(:first-child) {
display: none;
}
/* End Gantt chart workaround */