Files
component-party/content/4-component-composition/3-slot/ember/funny-button.hbs
Mathieu Schimmerling 6401ba12ea Revert "Merge pull request #73 from matschik/feat/required-react-import"
This reverts commit a69607362c, reversing
changes made to c17359e1e6.
2022-05-17 12:11:00 +00:00

16 lines
345 B
Handlebars

<button
style="
background: rgba(0, 0, 0, 0.4);
color: #fff;
padding: 10px 20px;
font-size: 30px;
border: 2px solid #fff;
margin: 8px;
transform: scale(0.9);
box-shadow: 4px 4px rgba(0, 0, 0, 0.4);
transition: transform 0.2s cubic-bezier(0.34, 1.65, 0.88, 0.925) 0s;
outline: 0;"
>
{{yield}}
</button>