Skip to content
Snippets Groups Projects
Commit a68412c1 authored by Nicolas Lempereur's avatar Nicolas Lempereur
Browse files

[FIX] account: style account dashboard if groupby


If we use a group by on the account dashboard, the kanban tiles have the
size of a normal kanban card so all graphs and so on are overlapping
which is a little ugly.

With this changeset, we have the same base width as in the non-grouped
view (which in the non grouped view may change with flex).

On {0,MD} screen size, we get in one column full width and ignore this.

opw-1964331
closes #32659

Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent 33f1e5f6
Branches
Tags
No related merge requests found
......@@ -36,6 +36,15 @@
width: 450px;
}
}
.o_kanban_group {
&:not(.o_column_folded) {
width: 450px + 2*$o-kanban-group-padding;
@include media-breakpoint-down(sm) {
width: 100%;
}
}
}
}
// Style for the widget "dashboard_graph"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment