...
 
Commits (2)
......@@ -22,7 +22,11 @@ m-formToast {
margin-bottom: 16px;
display: flex;
opacity: 1;
animation: 0.4s cubic-bezier(0.23, 1, 0.32, 1) 1 forward fadeIn;
animation-name: fadeIn;
animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
animation-duration: 0.4s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
@include m-theme() {
color: themed($m-grey-600);
background-color: themed($m-white);
......
......@@ -73,8 +73,7 @@
formControlName="title"
class="form-control"
/><m-formDescriptor
>TBD a short descriptor might go
here</m-formDescriptor
>This will be displayed as the title of your PRO site</m-formDescriptor
>
</div>
</div>
......