diff --git a/services/web/app/views/project/list/modals.pug b/services/web/app/views/project/list/modals.pug index 38fdb66955..828fa9fe4b 100644 --- a/services/web/app/views/project/list/modals.pug +++ b/services/web/app/views/project/list/modals.pug @@ -321,7 +321,7 @@ script(type="text/ng-template", id="v1ImportModalTemplate") .modal-body.v1-import-wrapper .v1-import-step-1(ng-show="step === 1") - img( + img.v1-import-img( src="/img/v1-import/v2-editor.png" alt="The new V2 Editor." ) @@ -333,7 +333,7 @@ script(type="text/ng-template", id="v1ImportModalTemplate") li Yet more stuff .v1-import-step-2(ng-show="step === 2") - img( + img.v1-import-img( src="/img/v1-import/v2-editor.png" alt="The new V2 Editor." ) diff --git a/services/web/public/img/v1-import/v2-editor.png b/services/web/public/img/v1-import/v2-editor.png new file mode 100644 index 0000000000..5079d77158 Binary files /dev/null and b/services/web/public/img/v1-import/v2-editor.png differ diff --git a/services/web/public/stylesheets/app/list/v1-import-modal.less b/services/web/public/stylesheets/app/list/v1-import-modal.less index 9e7282be9f..780dca9972 100644 --- a/services/web/public/stylesheets/app/list/v1-import-modal.less +++ b/services/web/public/stylesheets/app/list/v1-import-modal.less @@ -2,6 +2,10 @@ text-align: center; } +.v1-import-img { + width: 100%; +} + .v1-import-footer { display: flex; justify-content: space-evenly;