Switch equipment to district in settings

This commit is contained in:
Eli Ribble 2026-02-16 01:17:27 +00:00
parent 0f7e01e8a2
commit 4c8da3b96a
No known key found for this signature in database
3 changed files with 54 additions and 57 deletions

View file

@ -54,3 +54,4 @@ $theme-colors: map-merge(
@import "./sync/notification.scss";
@import "./sync/pool-csv-upload.scss";
@import "./sync/pool-by-id.scss";
@import "./sync/settings.scss";

48
scss/sync/settings.scss Normal file
View file

@ -0,0 +1,48 @@
.settings-card {
transition:
transform 0.2s,
box-shadow 0.2s;
height: 100%;
}
.settings-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.settings-icon {
font-size: 2.5rem;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin-bottom: 1.5rem;
}
.icon-users {
color: #6f42c1;
background-color: rgba(111, 66, 193, 0.1);
}
.icon-pesticides {
color: #198754;
background-color: rgba(25, 135, 84, 0.1);
}
.icon-integrations {
color: #0d6efd;
background-color: rgba(13, 110, 253, 0.1);
}
.icon-notifications {
color: #fd7e14;
background-color: rgba(253, 126, 20, 0.1);
}
.icon-general {
color: #6c757d;
background-color: rgba(108, 117, 125, 0.1);
}
.icon-equipment {
color: #dc3545;
background-color: rgba(220, 53, 69, 0.1);
}
.last-updated {
font-size: 0.8rem;
color: #6c757d;
}