frontend-smartfarming/agrilink_vocpro/src/app/pages/dashboard/page/graph/graph.component.scss

83 lines
1.2 KiB
SCSS
Raw Normal View History

.container-graph {
display: flex;
flex-direction: column;
justify-content: flex-start;
height: max-content;
2024-11-04 04:09:04 +00:00
.sensor-wrapper {
2024-11-04 04:09:04 +00:00
position: relative;
width: 100%;
2024-09-17 06:50:34 +00:00
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 35px;
2024-11-04 04:09:04 +00:00
border: 1px solid #E5E5E5;
padding: 0px 20px 0px 20px;
background-color: white;
border-radius: 10px;
h2 {
font-size: 18px;
margin-bottom: 10px;
2024-09-17 06:50:34 +00:00
}
2024-11-04 04:09:04 +00:00
canvas {
position: relative;
width: 100%;
height: auto;
aspect-ratio: 2 / 1;
max-height: 300px;
}
2024-09-17 06:50:34 +00:00
}
2024-11-04 04:09:04 +00:00
.title-with-dropdown {
display: flex;
align-items: center;
justify-content: center;
width: 50%;
.title {
flex: 0 0 25%;
text-align: center;
}
.form-select {
flex: 0 0 25%;
margin: 18px 0px 0px 15px;
2024-09-17 06:50:34 +00:00
}
}
}
.title {
text-align: center;
font-size: 20px;
margin: 18px 0px 0px 0px;
}
@media (max-width: 768px) {
canvas {
2024-11-04 04:09:04 +00:00
height: auto;
width: 100%;
max-width: 100%;
}
}
.loading {
font-size: 18px;
text-align: center;
}
.spinner {
2024-11-04 04:09:04 +00:00
color: #16423C;
}
.no-data {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
font-size: 18px;
}