mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
34 lines
601 B
SCSS
34 lines
601 B
SCSS
.basic-tab-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
padding-left: 21px;
|
|
height: 324px;
|
|
background: var(--color-background-alternative);
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
&__title {
|
|
@include Paragraph;
|
|
|
|
margin-top: 19px;
|
|
color: var(--color-text-default);
|
|
}
|
|
|
|
&__blurb {
|
|
@include H7;
|
|
|
|
width: 95%;
|
|
color: var(--color-text-default);
|
|
margin-top: 5px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
&__footer-blurb {
|
|
@include H7;
|
|
|
|
width: 95%;
|
|
color: var(--color-text-alternative);
|
|
margin-top: 15px;
|
|
}
|
|
}
|