Skip to content

Commit

Permalink
Merge pull request #108 from Programmier-AG/error-cards-height-fix
Browse files Browse the repository at this point in the history
Front End: Fix: Error Cards Overflow (#80)
  • Loading branch information
AuxiliumCDNG authored Apr 6, 2022
2 parents 7f4e6a2 + 9d048de commit e66ecc0
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,37 +88,38 @@ h3.chart-title {
}

#beelogger-current-data-error-box {
height: 200px;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
margin: 5px 30px 5px 20px;
padding: 0px 30px 0px 30px;
margin: 5px 20px 5px 20px;
padding: 15px 30px 15px 30px;
}

#beelogger-charts-error-box {
height: 200px;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
margin: 5px 30px 5px 20px;
padding: 0px 30px 0px 30px;
margin: 5px 20px 5px 20px;
padding: 15px 30px 15px 30px;
}

#beelogger-charts-loader {
height: 200px;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
margin: 5px 30px 5px 20px;
margin: 5px 20px 5px 20px;
padding: 0px 30px 0px 30px;
}

Expand Down

0 comments on commit e66ecc0

Please sign in to comment.