Sfoglia il codice sorgente

Merge pull request #82 from smiclea/CORWEB-103

Fix Wizard's alignment issues within its container and with its title header CORWEB-103
Dorin Paslaru 8 anni fa
parent
commit
8ec80f0c35

+ 1 - 0
src/components/Header/Header.scss

@@ -26,6 +26,7 @@ $brand-color: #FFF;
   position: absolute;
   width: 100%;
   top: 0;
+  left: 0;
   z-index: 9999;
   .bannerTitle {
     margin: 0;

+ 2 - 1
src/components/MigrationWizard/MigrationWizard.scss

@@ -24,6 +24,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
   box-sizing: border-box;
   flex-flow: column;
   display: flex;
+  align-items: center;
   .stepTitle {
     font-weight: $weight-light;
     font-size: 32px;
@@ -36,7 +37,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 }
 .container {
   flex: 1;
-  margin: 0 auto;
+  margin-left: -32px;
   padding: 0px 0px 70px 32px;
   overflow-y: auto;
   overflow-x: hidden;