From 9747e100360d009ba10775f265a5c2546ce6db78 Mon Sep 17 00:00:00 2001 From: joneff Date: Thu, 14 Oct 2021 00:58:04 +0300 Subject: [PATCH] fix(actions): add styles for vertical orientation of actions --- packages/default/scss/action-buttons/_layout.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/default/scss/action-buttons/_layout.scss b/packages/default/scss/action-buttons/_layout.scss index 85cf00a202d..6afffdbe1f1 100644 --- a/packages/default/scss/action-buttons/_layout.scss +++ b/packages/default/scss/action-buttons/_layout.scss @@ -43,7 +43,7 @@ } } - // Legacy align + // Actions align .k-actions-start { justify-content: flex-start; } @@ -57,4 +57,12 @@ flex: 1 0 0%; } + // Actions orientation + .k-actions-horizontal { + flex-flow: row nowrap; + } + .k-actions-vertical { + flex-flow: column nowrap; + } + }