diff options
Diffstat (limited to 'tpl/objects/dialog.pug')
-rw-r--r-- | tpl/objects/dialog.pug | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tpl/objects/dialog.pug b/tpl/objects/dialog.pug index 3ceae69..1a2f061 100644 --- a/tpl/objects/dialog.pug +++ b/tpl/objects/dialog.pug | |||
@@ -54,13 +54,13 @@ mixin dialog(title) | |||
54 | else | 54 | else |
55 | if title | 55 | if title |
56 | +div-heading('xl')(class='o-dialog__title l-media__block l-media__block--main')= title | 56 | +div-heading('xl')(class='o-dialog__title l-media__block l-media__block--main')= title |
57 | +action-button(round=true quiet=true icon='x' class='o-dialog__close-btn l-media__block') | 57 | +button(round=true quiet=true icon='x' class='o-dialog__close-btn l-media__block') |
58 | 58 | ||
59 | section(class=bodyClass) | 59 | section(class=bodyClass) |
60 | if slots.body | 60 | if slots.body |
61 | - slots.body() | 61 | - slots.body() |
62 | 62 | ||
63 | footer.o-dialog__footer.l-button-group | 63 | footer.o-dialog__footer.l-button-group |
64 | +a-button(outline=true)= 'Cancel' | 64 | +button(outline=true)= 'Cancel' |
65 | = ' ' | 65 | = ' ' |
66 | +a-button(variant='accent')= 'Continue' | 66 | +button(variant='accent')= 'Continue' |