Time tracking input field spacing

Reduce size of hrs, min, sec input fields
This commit is contained in:
Marcus Hill
2023-12-23 23:15:20 +00:00
parent 29867d6d11
commit e04c681ca5
2 changed files with 44 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
/* Custom CSS Styling for time tracking */
/* Small bit of space between the ticket status and time tracking inputs */
.custom-tt-horizontal-spacing {
width: 20px; /* Adjust the width as needed for smaller spacing */
display: inline-block;
}
/* Adjust Hour, min, second fields to be close together */
.custom-tt-width {
width: 50px; /* Adjust the width as needed */
padding: 0; /* Remove padding to maintain the desired width */
}