From aaf53b25188143952c50564c12f6a9f3e456693a Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Tue, 26 Sep 2023 17:00:58 +0200 Subject: [PATCH] rochefort-agglo: set buttons to full page width on small screens (#81650) --- static/rochefort-agglo/_custom.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/rochefort-agglo/_custom.scss b/static/rochefort-agglo/_custom.scss index edf2135f..35e477be 100644 --- a/static/rochefort-agglo/_custom.scss +++ b/static/rochefort-agglo/_custom.scss @@ -162,3 +162,9 @@ body.page-index #columns { background: $cell-background; } } + +@media (max-width: $very-small-limit) { + div.buttons .widget { + flex-basis: 100%; + } +}