From 1d8c926238d9f54d99249235d4b38e209954e90e Mon Sep 17 00:00:00 2001 From: Jonas Date: Tue, 6 Jun 2023 11:09:13 +0200 Subject: [PATCH] Use `display: flex` in app-content-list on mobile as well We already use `display: flex` for app-content-list if not on mobile, see `core/css/apps.scss` in server repository. Signed-off-by: Jonas --- src/components/NcAppContent/NcAppContent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NcAppContent/NcAppContent.vue b/src/components/NcAppContent/NcAppContent.vue index 4a392bb830..a187af4583 100644 --- a/src/components/NcAppContent/NcAppContent.vue +++ b/src/components/NcAppContent/NcAppContent.vue @@ -363,7 +363,7 @@ export default { .app-content-wrapper--mobile { &.app-content-wrapper--show-list :deep() { .app-content-list { - display: block; + display: flex; } .app-content-details { display: none;