mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
42 lines
527 B
SCSS
42 lines
527 B
SCSS
.seed-phrase-intro {
|
|
&__sections {
|
|
display: flex;
|
|
|
|
@include screen-sm-min {
|
|
flex-direction: row;
|
|
}
|
|
|
|
@include screen-md-max {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
&__left {
|
|
flex: 3;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__right {
|
|
flex: 1;
|
|
min-width: 0;
|
|
|
|
@include screen-md-max {
|
|
margin-top: 24px;
|
|
}
|
|
}
|
|
|
|
video {
|
|
border-radius: 8px;
|
|
width: calc(100% - 16px);
|
|
}
|
|
|
|
&__copy {
|
|
max-width: 696px;
|
|
}
|
|
|
|
&__sidebar_list {
|
|
list-style: disc;
|
|
padding-left: 20px;
|
|
}
|
|
}
|