You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.0 KiB
103 lines
2.0 KiB
@import 'actionable-message/index';
|
|
@import 'awaiting-swap/index';
|
|
@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 'intro-popup/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';
|
|
|
|
.swaps {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
|
|
@media screen and (min-width: 576px) {
|
|
z-index: 12;
|
|
}
|
|
|
|
&__container {
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
|
|
&--scrollable {
|
|
overflow: auto;
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
width: 460px;
|
|
background: white;
|
|
border: 1px solid $Grey-100;
|
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
|
|
border-radius: 8px;
|
|
height: 620px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
@media screen and (max-width: 576px) {
|
|
&--overflow {
|
|
overflow: scroll;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
width: 348px;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
@include H5;
|
|
|
|
font-weight: bold;
|
|
color: $Black-100;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-top: 0;
|
|
padding-bottom: 16px;
|
|
background: $Grey-000;
|
|
width: 100%;
|
|
position: relative;
|
|
|
|
@media screen and (min-width: 576px) {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
height: 66px;
|
|
}
|
|
}
|
|
|
|
&__header-cancel {
|
|
@include H7;
|
|
|
|
color: $Blue-500;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: 24px;
|
|
}
|
|
}
|
|
|