Skip to content

Commit

Permalink
Front End: Fix: Error Cards Overflow
Browse files Browse the repository at this point in the history
Fix a bug where the text overflows from the error card container
on small screens.
  • Loading branch information
fabiancdng committed Apr 6, 2022
1 parent 7f4e6a2 commit 9d048de
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 9d048de

Please sign in to comment.