Skip to content

Commit

Permalink
further webpack 5 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenweaver committed Nov 23, 2024
1 parent 01061c0 commit d562957
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 0 deletions.
54 changes: 54 additions & 0 deletions public/assets/css/datamonkey.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions src/scss/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -704,3 +704,58 @@ h4 {
display: none;
height: 0px;
}

footer {
text-align: center;
padding: 20px 10px;
background-color: #f7f7f7; // Example color
font-size: 0.875rem;
line-height: 1.5;
}


.upload-form {
display: flex;
flex-direction: column;
gap: 8px; /* Add space between form elements */
padding: 10px 0; /* Add padding to the form container */
}

.upload-form .upload-div,
.upload-form .form-group {
margin: 0; /* Remove default spacing for consistency */
}

.upload-form label {
margin-bottom: 4px; /* Space between label and input */
font-size: 1rem;
font-weight: 500;
color: #333; /* Neutral text color */
}

.upload-form input[type="file"],
.upload-form input[type="text"],
.upload-form select {
width: 100%;
padding: 6px 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
}

.upload-form button {
margin-top: 12px; /* Slight spacing above the button */
padding: 8px 12px;
font-size: 1rem;
font-weight: 600;
color: #fff;
background-color: #479167; /* Neutral green */
border: none;
border-radius: 4px;
cursor: pointer;
align-self: flex-end;
}

.upload-form button:hover {
background-color: #36c9b7; /* Slightly lighter green on hover */
}

0 comments on commit d562957

Please sign in to comment.