Skip to content

Commit

Permalink
fix scss formating in analytical view
Browse files Browse the repository at this point in the history
  • Loading branch information
LanaBot committed Nov 7, 2023
1 parent f4cade3 commit 6c7212b
Showing 1 changed file with 67 additions and 57 deletions.
124 changes: 67 additions & 57 deletions src/assets/styles/analyticalView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,67 +55,77 @@
}
}

.recommendation-details{
height: calc(100vh - $case-top);
background-color: $k-white;
padding: 15px;
border-radius: 10px;
display: flex;
flex-direction: column;
flex-grow: 1;
overflow: hidden;

.tabs-component{
position: relative;
overflow: inherit;

.legend {
display:flex;
flex-direction: column;
padding: 5px 10px 5px 5px;
position:absolute;
top: 5px;
right: 0px;
// bottom: 30px;
z-index: 1;
background-color: rgba($color: #ffffff, $alpha: 0.9);

.row{
margin: 0px 5px;
}

.past-activity, .current-activity, .next-activity, .intervention {
height: 10px;
width: 20px;
margin: 5px;
border-radius: 5px;
}

.past-activity {
background-color: $k-gray2;
}
.current-activity {
background-color: $k-blue;
}
.next-activity {
background-color: $k-orange;
}
.intervention {
background-color: $k-purple;
}

.selected {
background-color: $k-blue4;
}
}

.recommendation-details {
height: calc(100vh - $case-top);
background-color: $k-white;
padding: 15px;
border-radius: 10px;
display: flex;
flex-direction: column;
flex-grow: 1;
overflow: hidden;

.tabs-component {
position: relative;
overflow: inherit;

.legend {
display: flex;
flex-direction: column;
padding: 5px 10px 5px 5px;
position: absolute;
top: 5px;
right: 0px;
// bottom: 30px;
z-index: 1;
background-color: rgba($color: #ffffff, $alpha: 0.9);

.row {
margin: 0px 5px;
}

.past-activity,
.current-activity,
.next-activity,
.intervention {
height: 10px;
width: 20px;
margin: 5px;
border-radius: 5px;
}

.past-activity {
background-color: $k-gray2;
}

.current-activity {
background-color: $k-blue;
}
}

.tab-details{
height: calc(100vh - 100px - $case-top);
overflow-y: auto;
.next-activity {
background-color: $k-orange;
}

ion-icon{
height:25px;
width:25px;
padding: 10px;
.intervention {
background-color: $k-purple;
}

}
}

.tab-details{
height: calc(100vh - 100px - $case-top);
overflow-y: auto;

ion-icon{
height:25px;
width:25px;
padding: 10px;
}
}
}
Expand Down

0 comments on commit 6c7212b

Please sign in to comment.