Use automation prefix for classNames
[MAILPOET-4533]
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
max-width: 982px;
|
||||
}
|
||||
|
||||
ul.mailpoet-templates {
|
||||
ul.mailpoet-automation-templates {
|
||||
clear: both;
|
||||
cursor: pointer;
|
||||
display: grid;
|
||||
@@ -54,7 +54,7 @@ ul.mailpoet-templates {
|
||||
margin: 8px 0 0;
|
||||
}
|
||||
|
||||
.mailpoet-from-scratch {
|
||||
.mailpoet-automation-from-scratch {
|
||||
button {
|
||||
align-content: center;
|
||||
border: 2px dashed #dcdcde;
|
||||
|
@@ -78,7 +78,7 @@ export function FromScratchListItem(): JSX.Element {
|
||||
}, errorHandler);
|
||||
}, []);
|
||||
return (
|
||||
<li className="mailpoet-template-list-item mailpoet-from-scratch">
|
||||
<li className="mailpoet-automation-template-list-item mailpoet-automation-from-scratch">
|
||||
{error && (
|
||||
<Notice type="error" closable timeout={false}>
|
||||
<p>{error}</p>
|
||||
|
@@ -42,7 +42,7 @@ export function TemplateListItem({
|
||||
}
|
||||
|
||||
return (
|
||||
<li className="mailpoet-template-list-item">
|
||||
<li className="mailpoet-automation-template-list-item">
|
||||
{notice}
|
||||
<Button
|
||||
isBusy={loading}
|
||||
|
@@ -21,7 +21,7 @@ function Templates(): JSX.Element {
|
||||
<FromScratchButton />
|
||||
</Flex>
|
||||
|
||||
<ul className="mailpoet-templates">
|
||||
<ul className="mailpoet-automation-templates">
|
||||
{workflowTemplates.map((template) => (
|
||||
<TemplateListItem key={template.slug} template={template} />
|
||||
))}
|
||||
|
Reference in New Issue
Block a user