1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/pages/first-time-flow/welcome/index.scss
Mark Stacey f46dda0195
Uncomment and fix all auto-fixable stylelint rules (#8989)
All stylelint rules that can be automatically fixed have been uncommented. The rules are:

* `at-rule-empty-line-before`
* `block-closing-brace-empty-line-before`
* `block-closing-brace-newline-before`
* `block-opening-brace-space-before`
* `color-hex-case`
* `color-hex-length`
* `comment-empty-line-before`
* `declaration-block-semicolon-newline-after`
* `declaration-block-semicolon-space-after`
* `declaration-block-trailing-semicolon`
* `declaration-colon-space-after`
* `declaration-empty-line-before`
* `function-comma-space-after`
* `function-comma-space-before`
* `indentation`
* `length-zero-no-unit`
* `no-eol-whitespace`
* `no-missing-end-of-source-newline`
* `number-leading-zero`
* `number-no-trailing-zeros`
* `rule-empty-line-before`
* `selector-list-comma-newline-after`
* `selector-pseudo-element-colon-notation`
2020-07-15 10:13:40 -03:00

44 lines
703 B
SCSS

.welcome-page {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
max-width: 442px;
padding: 0 18px;
color: black;
&__wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
height: 100%;
margin-top: 110px;
}
&__header {
font-size: 28px;
margin-bottom: 22px;
margin-top: 50px;
text-align: center;
}
&__description {
text-align: center;
div {
font-size: 16px;
}
@media screen and (max-width: 575px) {
font-size: 0.9rem;
}
}
.first-time-flow__button {
width: 184px;
font-weight: 500;
margin-top: 44px;
}
}