@import "libs/color-palette.less"; @import "libs/variables.less"; @import "libs/mixins.less"; @mobile-size: 500px; @login-bg-color: #fff; .confirm { &-wrapper { width: 100%; height: 100vh; background-color: @gray-lighter; display: flex; justify-content: center; align-items: center; @media screen and (max-width: @mobile-size) { display: block; } .thanks { margin: 0 auto; padding: 50px; max-width: 400px; height: 400px; background-color: @login-bg-color; box-shadow: 2px 2px 7px #ddd; @media screen and (max-width: @mobile-size) { height: 100vh; } .logo { text-align: center; margin-bottom: 40px; } h2 { margin: 0 0 30px 0; font-size: 2rem; color: #1589d6; text-align: center; } h3 { margin: 0 0 30px 0; font-size: 1.5rem; text-align: center; margin-bottom: 40px; } .navigation { text-align: center; @media screen and (max-width: @mobile-size) { display: flex; flex-direction: column; } .md-button { margin: 0; padding: 0 10px; height: 45px; font-weight: bold; background-color: #1589d6;; margin-bottom: 40px; color: #fff; } .md-button:first-child { margin-right: 25px; @media screen and (max-width: @mobile-size) { margin-right: 0; } } } } } }