From 6c4f3c6fc2a014a51d4f2b69fe670686ed1cea12 Mon Sep 17 00:00:00 2001 From: ines Date: Wed, 26 Apr 2017 16:02:59 +0200 Subject: [PATCH] Allow styles arguments on row mixin --- website/_includes/_mixins.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/_includes/_mixins.jade b/website/_includes/_mixins.jade index ba5a9297e..9ca60b87d 100644 --- a/website/_includes/_mixins.jade +++ b/website/_includes/_mixins.jade @@ -198,8 +198,8 @@ mixin table(head) //- Table row (only used within +table) -mixin row() - tr.c-table__row&attributes(attributes) +mixin row(...style) + tr.c-table__row(class=prefixArgs(style, "c-table__row"))&attributes(attributes) block