Skip to content

Commit

Permalink
[CSS] fix: dashboard boxes rounded
Browse files Browse the repository at this point in the history
  • Loading branch information
eoxia-amandine committed Aug 30, 2022
1 parent 013bf83 commit b5f133c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
14 changes: 14 additions & 0 deletions css/digiriskdolibarr.css
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,20 @@
margin-right: 2px;
}

.box-flex-item .info-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.box-flex-item .info-box .info-box-icon {
height: auto !important;
border-radius: 0 0 0 15px;
}
.box-flex-item .info-box .info-box-content {
margin-left: 0 !important;
}
.box-flex-item .info-box-icon {
display: -webkit-box;
display: -ms-flexbox;
Expand Down
2 changes: 1 addition & 1 deletion css/digiriskdolibarr.min.css

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions css/scss/element/_dashboard-box.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
.box-flex-item {

.info-box {
display: flex;
flex-wrap: nowrap;

.info-box-icon {
height: auto !important;
border-radius: 0 0 0 15px;
}
.info-box-content {
margin-left: 0 !important;
}
}

.info-box-icon {
display: flex;

Expand Down

0 comments on commit b5f133c

Please sign in to comment.