- div-. :
column :name
app/assets/stylesheets/active_admin.css.scss :
.active_admin {
.index_as_table {
td.name {
max-width: 150px;
min-width: 100px;
}
}
}
, :
.active_admin {
.index_as_table {
td {
max-width: 150px;
}
}
}
If you use other indexing renderers, just look at the source html and adjust the stylesheet of the active administrator accordingly.
source
share