You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
686 B

@import "../../assets/scss/variables";
.dashboard-container {
display: flex;
flex-wrap: wrap;
.date-container {
display: block;
width: 100%;
text-align: center;
}
.info-container {
display: flex;
flex-wrap: wrap;
width: 100%;
.item {
display: inline-block;
padding: 5px 10px;
border: 1px solid $gray;
border-radius: 3px;
margin: 3px;
font-size: $font-14;
font-weight: bold;
.value {
font-weight: normal;
font-size: $font-18;
}
}
}
.graph-container {
display: block;
width: 100%;
padding: 0;
}
.no-data {
padding: 20px;
margin: auto;
}
}