rename /rpg-docs to /app

This commit is contained in:
Andrew Zhu
2018-06-07 01:07:49 -07:00
parent de93636c7c
commit c099e3173b
420 changed files with 12 additions and 25 deletions

View File

@@ -0,0 +1,32 @@
<!--
Dialog stack should be placed last in the root layout template
It creates a stack of dialogs that can be closed individually
-->
<template name="dialogStack">
<div class="dialog-stack layout vertical center center-justified {{dialogStackClass}}">
<div class="fit backdrop"></div>
<div class="dialog-sizer">
{{#each dialogs}}
<div class="dialog" style={{dialogStyle @index}}>
{{> UI.dynamic template=template data=data}}
</div>
{{/each}}
</div>
</div>
</template>
<template name="testDialog">
<paper-toolbar>
Test dialog {{data}}
</paper-toolbar>
<div>
<div class="testButton">
</div>
<div class="testButton">
</div>
<div class="testButton">
</div>
<div class="testButton">
</div>
</div>
</template>