mirror of https://github.com/hashicorp/consul
parent
5e4de8b50a
commit
45554e4e9c
@ -0,0 +1 @@
|
||||
{{yield}}
|
@ -0,0 +1,5 @@
|
||||
import Component from '@ember/component';
|
||||
|
||||
export default Component.extend({
|
||||
tagName: '',
|
||||
});
|
@ -0,0 +1,9 @@
|
||||
<div
|
||||
class="notice {{@type}}"
|
||||
...attributes
|
||||
>
|
||||
{{yield (hash
|
||||
Header=(component 'anonymous' tagName="header")
|
||||
Body=(component 'anonymous')
|
||||
)}}
|
||||
</div>
|
@ -1,13 +1,24 @@
|
||||
%notice {
|
||||
position: relative;
|
||||
padding: 1em;
|
||||
padding: 0.8rem;
|
||||
}
|
||||
%notice header {
|
||||
margin-bottom: 0.1rem;
|
||||
}
|
||||
%notice header > * {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
%notice p {
|
||||
margin-bottom: 0.3rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
/* this is probably skin */
|
||||
%notice {
|
||||
padding-left: calc(1em + 32px);
|
||||
padding-left: calc(0.8rem + 1.4rem);
|
||||
}
|
||||
%notice::before {
|
||||
position: absolute;
|
||||
left: 16px;
|
||||
top: 16px;
|
||||
top: 0.8rem;
|
||||
left: 0.6rem;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
Loading…
Reference in new issue