feat: add feedback functionality and modal for category feedback style: add feedback button styles in CSS docs: add explanation tab for dashboard usage instructions
76 lines
1.0 KiB
CSS
76 lines
1.0 KiB
CSS
hr {
|
|
border-top: 2px solid gray;
|
|
}
|
|
|
|
.dropdown-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 10px;
|
|
}
|
|
|
|
.dropdown-button {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.tabs-group {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.app-div {
|
|
padding: 10px;
|
|
}
|
|
|
|
.data-table-div {
|
|
margin: auto;
|
|
padding: 10px;
|
|
}
|
|
|
|
.budget-label {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.budget-text {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.budget-text-value {
|
|
font-size: 20px;
|
|
font-style: italic;
|
|
}
|
|
|
|
.budget-progress-bar {
|
|
height: 20px;
|
|
}
|
|
|
|
.budget-tooltip {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.checklist {
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
@media(max-width: 800px) {
|
|
.dropdown-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.feedback-button {
|
|
background-color: #007bff;
|
|
color: white;
|
|
border: none;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
margin: 2px 2px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|