mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
f46dda0195
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`
88 lines
1.5 KiB
SCSS
88 lines
1.5 KiB
SCSS
.select-action {
|
|
.app-header__logo-container {
|
|
width: 742px;
|
|
margin-top: 3%;
|
|
}
|
|
|
|
&__body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__body-header {
|
|
font-family: Roboto;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 39px;
|
|
font-size: 28px;
|
|
text-align: center;
|
|
margin-top: 65px;
|
|
color: black;
|
|
}
|
|
|
|
&__select-buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
&__select-button {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
width: 388px;
|
|
height: 278px;
|
|
border: 1px solid #d8d8d8;
|
|
box-sizing: border-box;
|
|
border-radius: 10px;
|
|
margin-left: 22px;
|
|
|
|
.first-time-flow__button {
|
|
max-width: 221px;
|
|
height: 44px;
|
|
}
|
|
}
|
|
|
|
&__button-symbol {
|
|
color: #c4c4c4;
|
|
margin-top: 41px;
|
|
}
|
|
|
|
&__button-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 144px;
|
|
}
|
|
|
|
&__button-text-big {
|
|
font-family: Roboto;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 28px;
|
|
font-size: 20px;
|
|
color: #000;
|
|
margin-top: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
&__button-text-small {
|
|
font-family: Roboto;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 20px;
|
|
font-size: 14px;
|
|
color: #7a7a7b;
|
|
margin-top: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
font-weight: 500;
|
|
width: 221px;
|
|
}
|
|
}
|