dbc.Row and dbc.Col for Plots

I use the following construction for my plots:

import dash_core_components as dcc
import dash_bootstrap_components as dbc

dbc.Row([
dbc.Col(dcc.Graph()),
dbc.Col(dcc.Graph())
])

The problem is that my hovers does not fit into the layout anymore,
Does anybody know how to fit them?hovers