131 lines
2.4 KiB
SCSS
131 lines
2.4 KiB
SCSS
* {
|
|
outline: none;
|
|
-ms-overflow-style: none !important; /* IE and Edge */
|
|
scrollbar-width: none !important; /* Firefox */
|
|
&::-webkit-scrollbar {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
font-family: "Ubuntu";
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
--ghst-gold: #f8cc82;
|
|
--ghst-card-border-radius: 10px;
|
|
--light-paper-bg: linear-gradient(65.7deg, #f5f5f5 8.35%, #ffffff 100%);
|
|
--dark-paper-bg: linear-gradient(237.43deg, #2b313d -12.81%, #171a20 132.72%);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.app {
|
|
height: 100%;
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-flow: column;
|
|
flex-direction: column;
|
|
z-index: 1;
|
|
background-size: cover;
|
|
font-family: "Ubuntu";
|
|
transition: all ease 0.33ms;
|
|
}
|
|
|
|
.MuiDrawer-paperAnchorDockedLeft {
|
|
border-right: 0 !important;
|
|
}
|
|
|
|
.recharts-wrapper {
|
|
position: absolute;
|
|
}
|
|
|
|
#choose-bond-view {
|
|
.bond-data-card {
|
|
.data-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
margin: 12px 0px;
|
|
}
|
|
|
|
.data-row-centered {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-flow: row wrap;
|
|
margin: 12px 0px;
|
|
.marginedBtn {
|
|
margin: 0.3rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.ghst-card {
|
|
max-width: 900px;
|
|
.card-header {
|
|
width: 100%;
|
|
min-height: 33px;
|
|
margin-bottom: 10px;
|
|
h5 {
|
|
font-weight: 600 !important;
|
|
}
|
|
}
|
|
|
|
.help-text {
|
|
margin: 10px 0px;
|
|
}
|
|
|
|
.data-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
margin: 12px 0px;
|
|
}
|
|
|
|
.data-row-centered {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-flow: row wrap;
|
|
margin: 12px 0px;
|
|
.marginedBtn {
|
|
margin: 0.3rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ghst-pairs {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.ghost-canvas {
|
|
position: absolute;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
top: 0;
|
|
opacity: 0.1;
|
|
z-index: -10;
|
|
}
|
|
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
-webkit-appearance: none !important;
|
|
}
|
|
|
|
input[type="number"] {
|
|
-moz-appearance: textfield !important;
|
|
}
|
|
|
|
a:hover svg {
|
|
color: inherit;
|
|
}
|
|
|
|
.tooltip {
|
|
z-index: 9999999;
|
|
}
|