1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-23 08:40:39 +01:00
Files
frontend/src/components/loading-box.html
T
2016-05-28 16:07:25 -07:00

27 lines
633 B
HTML

<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/paper-spinner/paper-spinner.html">
<dom-module id="loading-box">
<style is="custom-style" include="iron-flex"></style>
<style>
.text {
display: inline-block;
line-height: 28px;
vertical-align: top;
margin-left: 8px;
}
</style>
<template>
<div class='layout horizontal'>
<paper-spinner active="true"></paper-spinner>
<div class='text'><content></content></div>
</div>
</template>
</dom-module>
<script>
Polymer({
is: 'loading-box',
});
</script>