mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-11 10:34:06 +00:00
d2b5131c9e
* WA-279 Creating Stepper component for simulating a Wizard Form with multiple steps * WA-279 Introduced a review middle step when creating a new Safe * WA-279 Added more Layout components (Bold, Span, GnoForm...) * WA-279 Added validation to final-form's create safe form, including isEthAddress validator to form's owners addresses * WA-279 Updated storybook Header and Footer
30 lines
532 B
SCSS
30 lines
532 B
SCSS
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
overflow-x: hidden;
|
|
color: #1f5f76;
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: $mediumFontSize;
|
|
margin: 0;
|
|
}
|
|
|
|
body>div:first-child {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
min-height: calc(100% - (2 * $xl));
|
|
padding: $xl;
|
|
background-image: linear-gradient(to bottom, $primary, #1a829d, #1a829d, #1f5f76);
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
} |