mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
34 lines
493 B
SCSS
34 lines
493 B
SCSS
.basic-tab-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
padding-left: 21px;
|
|
height: 324px;
|
|
background: #f5f7f8;
|
|
border-bottom: 1px solid #d2d8dd;
|
|
|
|
&__title {
|
|
@include Paragraph;
|
|
|
|
margin-top: 19px;
|
|
color: $black;
|
|
}
|
|
|
|
&__blurb {
|
|
@include H7;
|
|
|
|
width: 95%;
|
|
color: $black;
|
|
margin-top: 5px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
&__footer-blurb {
|
|
@include H7;
|
|
|
|
width: 95%;
|
|
color: #979797;
|
|
margin-top: 15px;
|
|
}
|
|
}
|