mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
c9dc59ea2a
Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com> Co-authored-by: Hassan Malik <41640681+hmalik88@users.noreply.github.com>
120 lines
2.0 KiB
SCSS
120 lines
2.0 KiB
SCSS
@import 'confirm-page-container-warning/index';
|
|
@import 'confirm-page-container-summary/index';
|
|
|
|
.confirm-page-container-content {
|
|
overflow-y: auto;
|
|
height: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&--with-top-border {
|
|
border-top: 1px solid var(--color-border-muted);
|
|
}
|
|
|
|
&__error-container {
|
|
padding: 0 16px 16px 16px;
|
|
}
|
|
|
|
&__details {
|
|
box-sizing: border-box;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
&__data {
|
|
padding: 16px;
|
|
color: var(--color-text-alternative);
|
|
|
|
& > .disclosure {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
&__data-box {
|
|
@include H7;
|
|
|
|
background-color: var(--color-background-alternative);
|
|
padding: 12px;
|
|
word-wrap: break-word;
|
|
overflow-y: auto;
|
|
|
|
&-label {
|
|
@include H7;
|
|
|
|
text-transform: uppercase;
|
|
padding: 8px 0 12px;
|
|
}
|
|
}
|
|
|
|
&__data-field {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
&-label {
|
|
font-weight: 500;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
|
|
&__gas-fee {
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
.advanced-gas-inputs__gas-edit-rows {
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
&__function-type {
|
|
@include H6;
|
|
|
|
font-weight: 500;
|
|
text-transform: capitalize;
|
|
color: var(--color-text-default);
|
|
padding-left: 5px;
|
|
}
|
|
|
|
&__tab {
|
|
@include H7;
|
|
|
|
color: var(--color-text-alternative);
|
|
text-transform: uppercase;
|
|
|
|
& button {
|
|
font-size: unset;
|
|
color: var(--color-text-alternative);
|
|
text-transform: uppercase;
|
|
max-width: 170px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
& .dropdown__select {
|
|
color: var(--color-text-alternative);
|
|
text-transform: uppercase;
|
|
|
|
option {
|
|
text-transform: none;
|
|
}
|
|
}
|
|
|
|
& .dropdown__icon-caret-down {
|
|
top: 40%;
|
|
}
|
|
}
|
|
|
|
.page-container__footer {
|
|
margin-top: auto;
|
|
}
|
|
|
|
&__currency-container,
|
|
&__total-amount,
|
|
&__total-value {
|
|
position: relative;
|
|
}
|
|
}
|