1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/index.scss

148 lines
3.0 KiB
SCSS
Raw Normal View History

2020-10-06 20:28:38 +02:00
@import 'awaiting-swap/index';
@import 'awaiting-signatures/index';
@import 'smart-transaction-status/index';
2020-10-06 20:28:38 +02:00
@import 'build-quote/index';
@import 'countdown-timer/index';
@import 'dropdown-input-pair/index';
@import 'dropdown-search-list/index';
@import 'exchange-rate-display/index';
@import 'fee-card/index';
@import 'loading-swaps-quotes/index';
@import 'main-quote-summary/index';
@import 'searchable-item-list/index';
@import 'select-quote-popover/index';
@import 'slippage-buttons/index';
@import 'swaps-footer/index';
@import 'view-quote/index';
@import 'import-token/index';
2020-10-06 20:28:38 +02:00
.swaps {
display: flex;
justify-content: center;
width: 100%;
@media screen and (min-width: $break-large) {
2020-10-06 20:28:38 +02:00
z-index: 12;
}
&__error-message {
margin-left: 24px;
margin-right: 24px;
@media screen and (min-width: $break-large) {
margin-left: 20px;
margin-right: 20px;
}
}
2020-10-06 20:28:38 +02:00
&__container {
display: flex;
flex-flow: column;
align-items: center;
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
2020-10-06 20:28:38 +02:00
@media screen and (min-width: $break-large) {
2020-10-06 20:28:38 +02:00
width: 460px;
2022-03-17 19:04:01 +01:00
background: var(--color-background-default);
border: 1px solid var(--color-border-muted);
2020-10-06 20:28:38 +02:00
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
border-radius: 8px;
height: 620px;
}
}
&__content {
display: flex;
flex-flow: column;
align-items: center;
position: relative;
width: 100%;
height: 100%;
2021-09-11 20:13:36 +02:00
@media screen and (max-width: $break-small) {
2020-10-06 20:28:38 +02:00
&--overflow {
overflow: scroll;
}
}
@media screen and (min-width: $break-large) {
2020-10-06 20:28:38 +02:00
width: 348px;
}
}
&__title {
@include H5;
font-weight: bold;
2022-03-17 19:04:01 +01:00
color: var(--color-text-default);
margin-top: -5px;
flex: 1;
text-align: center;
2020-10-06 20:28:38 +02:00
}
&__header {
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
padding-top: 0;
padding-bottom: 16px;
2022-03-17 19:04:01 +01:00
background: var(--color-background-alternative);
2020-10-06 20:28:38 +02:00
width: 100%;
position: relative;
flex-direction: row;
2020-10-06 20:28:38 +02:00
@media screen and (min-width: $break-large) {
2020-10-06 20:28:38 +02:00
padding-top: 8px;
padding-bottom: 8px;
height: 66px;
}
}
&__header-cancel {
@include H7;
2022-03-17 19:04:01 +01:00
color: var(--color-primary-default);
2020-10-06 20:28:38 +02:00
cursor: pointer;
padding-right: 24px;
flex: 1;
text-align: right;
}
&__header-edit {
@include H7;
2022-03-17 19:04:01 +01:00
color: var(--color-primary-default);
cursor: pointer;
padding-left: 24px;
flex: 1;
2020-10-06 20:28:38 +02:00
}
.actionable-message__message &__notification-close-button {
background-color: transparent;
position: absolute;
right: 0;
top: 2px;
&::after {
position: absolute;
content: '\00D7';
font-size: 29px;
font-weight: 200;
color: var(--color-text-default);
background-color: transparent;
top: 0;
right: 12px;
cursor: pointer;
}
}
&__notification-title {
font-weight: bold;
margin-right: 14px;
}
2020-10-06 20:28:38 +02:00
}