-
-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Portal.view.home.parts.AfterMath: needs styling enhancements #6007
- Loading branch information
Showing
2 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,17 +33,14 @@ class AfterMath extends BaseContainer { | |
}, { | ||
cls : ['neo-content'], | ||
flex: 'none', | ||
tag : 'ul', | ||
|
||
html: ` | ||
<p> | ||
To learn more about Neo.mjs please read <a href="#/learn">the Learning Section</a> or browse <a href="#/blog">the blog</a>. | ||
</p> | ||
<p> | ||
To arrange a demo or to talk to an engineer email <a href="mailto:[email protected]">[email protected]</a>. | ||
<br>For help starting a project email <a href="mailto:[email protected]">[email protected]</a>. | ||
<br>For questions about private training email <a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
`, | ||
tag : 'div' | ||
<li>To learn more about Neo.mjs please read the <a href="#/learn">Learning Section</a> or browse <a href="#/blog">the Blog</a></li> | ||
<li>To arrange a demo or to talk to an engineer email <a href="mailto:[email protected]">[email protected]</a></li> | ||
<li>For help starting a project email <a href="mailto:[email protected]">[email protected]</a></li> | ||
<li>For questions about private training email <a href="mailto:[email protected]">[email protected]</a></li> | ||
` | ||
}, { | ||
flex: 1 | ||
}, { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
.portal-home-aftermath { | ||
height: 60em; | ||
|
||
p { | ||
text-align: center; | ||
a { | ||
color: #3E63DD; | ||
} | ||
|
||
li { | ||
font-size: var(--core-fontsize-body); | ||
font-weight: var(--core-fontweight-regular); | ||
line-height: var(--core-lineheight-paragraph); | ||
|
||
&::marker { | ||
color: #3E63DD; | ||
} | ||
} | ||
|
||
ul { | ||
align-self: center; | ||
} | ||
} |