Skip to content

Commit

Permalink
feat: Adicionando responsive Design.
Browse files Browse the repository at this point in the history
  • Loading branch information
nateejpg committed Aug 13, 2024
1 parent b8b946c commit fe2fe3e
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions frontend/src/pages/dashboard/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ body{

.chart01 .chart{
width: 165%;
height: 50% !important;
height: 50%;
}

.chart02 {
Expand All @@ -92,6 +92,10 @@ body{
}

@media(max-width: 1300px ){

body{
height: 100%;
}

.chart02{
order: 1;
Expand All @@ -102,6 +106,7 @@ body{
width: 100%;
padding-left: 0px;
padding: 0;
gap: 0;
}

.chart01{
Expand All @@ -111,21 +116,37 @@ body{
align-items: center;
text-align: center;
width: 100%;
height: 100%;
}

.dashboard{
height: 100%;
}

.dashboardContainer{
display: flex;
flex-direction: column;
padding: 0;
height: 100%;
}

.chartContainer{
display: flex;
flex-direction: column;
padding: 0;
height: 100%;

}

.chart01 .chart{
max-width: 100%;
max-height: 100%;
display: flex;
width: 415px;
height: 700px;
}

.chart02 .chartPizza{
width: 500px;
height: 500px;
}

}

0 comments on commit fe2fe3e

Please sign in to comment.