Skip to content

Commit

Permalink
Fix clipping issue in building block info 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jul 22, 2022
1 parent 3f9bff1 commit 0dd0c91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Client/CustomComponents/BuildingBlockDetailsModal.fs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ let rowIndicesToReadable (rowIndices:int []) =

let infoIcon (txt:string) =
span [
Style [Color NFDIColors.Yellow.Base; OverflowY OverflowOptions.Visible]
Style [Color NFDIColors.Yellow.Base; (*OverflowY OverflowOptions.Visible*)]
Class ("has-tooltip-right has-tooltip-multiline")
Props.Custom ("data-tooltip", txt)
] [
Expand Down Expand Up @@ -161,7 +161,7 @@ let buildingBlockDetailModal (model:Model) dispatch =
Props [ OnClick closeMsg ]
] [ ]
Notification.notification [
Notification.Props [Style [Width "90%"; MaxHeight "80%"; OverflowX OverflowOptions.Auto ]]
Notification.Props [Style [Width "90%"; MaxHeight "80%"]]
] [
Notification.delete [Props [OnClick closeMsg]] []
tableElement baseArr
Expand Down

0 comments on commit 0dd0c91

Please sign in to comment.