Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
822
Merge Requests
52
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
533fa6a3999de07fcfbff7b9a5fd20e84c270934...2de8261d9f601c1d38e5b66fb4b50c1f334eba08
Source
2de8261d9f601c1d38e5b66fb4b50c1f334eba08
...
Target
533fa6a3999de07fcfbff7b9a5fd20e84c270934
Compare
Commits (2)
(fix): bad animation config
· 5935ee00
Mark Harding
authored
39 minutes ago
5935ee00
(fix): improve text of descriptor
· 2de8261d
Mark Harding
authored
39 minutes ago
2de8261d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
src/app/common/components/form-toast/form-toast.component.scss
View file @
2de8261d
...
...
@@ -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
);
...
...
This diff is collapsed.
src/app/modules/pro/settings/settings.component.html
View file @
2de8261d
...
...
@@ -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>
...
...
This diff is collapsed.